This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
Password and authentication handling
2002-07-15 14:35:28 +04:00
Copyright ( C ) Andrew Bartlett 2002
Copyright ( C ) Jelmer Vernooij 2002
2005-01-26 02:33:18 +03:00
Copyright ( C ) Simo Sorce 2003
2002-07-15 14:35:28 +04:00
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
2002-07-15 14:35:28 +04:00
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
2002-07-15 14:35:28 +04:00
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
# include "includes.h"
2002-07-15 14:35:28 +04:00
# undef DBGC_CLASS
# define DBGC_CLASS DBGC_PASSDB
2003-04-15 20:01:14 +04:00
static struct pdb_init_function_entry * backends = NULL ;
static void lazy_initialize_passdb ( void )
{
static BOOL initialized = False ;
if ( initialized ) return ;
static_init_pdb ;
initialized = True ;
}
2003-04-25 00:36:41 +04:00
static struct pdb_init_function_entry * pdb_find_backend_entry ( const char * name ) ;
2004-01-29 23:14:50 +03:00
/*******************************************************************
Clean up uninitialised passwords . The only way to tell
that these values are not ' real ' is that they do not
have a valid last set time . Instead , the value is fixed at 0.
Therefore we use that as the key for ' is this a valid password ' .
However , it is perfectly valid to have a ' default ' last change
time , such LDAP with a missing attribute would produce .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void pdb_force_pw_initialization ( SAM_ACCOUNT * pass )
{
2005-03-22 18:03:17 +03:00
const uint8 * lm_pwd , * nt_pwd ;
2004-01-29 23:14:50 +03:00
/* only reset a password if the last set time has been
explicitly been set to zero . A default last set time
is ignored */
if ( ( pdb_get_init_flags ( pass , PDB_PASSLASTSET ) ! = PDB_DEFAULT )
& & ( pdb_get_pass_last_set_time ( pass ) = = 0 ) )
{
if ( pdb_get_init_flags ( pass , PDB_LMPASSWD ) ! = PDB_DEFAULT )
{
lm_pwd = pdb_get_lanman_passwd ( pass ) ;
if ( lm_pwd )
2004-02-12 20:51:23 +03:00
pdb_set_lanman_passwd ( pass , NULL , PDB_CHANGED ) ;
2004-01-29 23:14:50 +03:00
}
if ( pdb_get_init_flags ( pass , PDB_NTPASSWD ) ! = PDB_DEFAULT )
{
nt_pwd = pdb_get_nt_passwd ( pass ) ;
if ( nt_pwd )
2004-02-12 20:51:23 +03:00
pdb_set_nt_passwd ( pass , NULL , PDB_CHANGED ) ;
2004-01-29 23:14:50 +03:00
}
}
return ;
}
2003-05-01 03:06:44 +04:00
NTSTATUS smb_register_passdb ( int version , const char * name , pdb_init_function init )
2003-04-15 20:01:14 +04:00
{
struct pdb_init_function_entry * entry = backends ;
2003-04-28 21:48:48 +04:00
if ( version ! = PASSDB_INTERFACE_VERSION ) {
DEBUG ( 0 , ( " Can't register passdb backend! \n "
" You tried to register a passdb module with PASSDB_INTERFACE_VERSION %d, "
" while this version of samba uses version %d \n " ,
version , PASSDB_INTERFACE_VERSION ) ) ;
return NT_STATUS_OBJECT_TYPE_MISMATCH ;
}
if ( ! name | | ! init ) {
return NT_STATUS_INVALID_PARAMETER ;
}
2003-04-15 20:01:14 +04:00
DEBUG ( 5 , ( " Attempting to register passdb backend %s \n " , name ) ) ;
2003-04-28 21:48:48 +04:00
/* Check for duplicates */
2003-04-25 00:36:41 +04:00
if ( pdb_find_backend_entry ( name ) ) {
DEBUG ( 0 , ( " There already is a passdb backend registered with the name %s! \n " , name ) ) ;
2003-04-28 21:48:48 +04:00
return NT_STATUS_OBJECT_NAME_COLLISION ;
2003-04-15 20:01:14 +04:00
}
2004-12-07 21:25:53 +03:00
entry = SMB_XMALLOC_P ( struct pdb_init_function_entry ) ;
2003-04-15 20:01:14 +04:00
entry - > name = smb_xstrdup ( name ) ;
entry - > init = init ;
DLIST_ADD ( backends , entry ) ;
DEBUG ( 5 , ( " Successfully added passdb backend '%s' \n " , name ) ) ;
2003-04-28 21:48:48 +04:00
return NT_STATUS_OK ;
2003-04-15 20:01:14 +04:00
}
static struct pdb_init_function_entry * pdb_find_backend_entry ( const char * name )
{
struct pdb_init_function_entry * entry = backends ;
while ( entry ) {
2003-05-16 10:20:57 +04:00
if ( strcmp ( entry - > name , name ) = = 0 ) return entry ;
2003-04-15 20:01:14 +04:00
entry = entry - > next ;
}
return NULL ;
}
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
2005-01-19 19:13:26 +03:00
static NTSTATUS context_setsampwent ( struct pdb_context * context , BOOL update , uint16 acb_mask )
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
{
2002-09-26 22:58:34 +04:00
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
2002-09-25 19:19:00 +04:00
if ( ! context ) {
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
2002-09-26 22:58:34 +04:00
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-07-15 14:35:28 +04:00
context - > pwent_methods = context - > pdb_methods ;
if ( ! context - > pwent_methods ) {
/* No passdbs at all */
2002-09-26 22:58:34 +04:00
return ret ;
2002-07-15 14:35:28 +04:00
}
2005-01-19 19:13:26 +03:00
while ( NT_STATUS_IS_ERR ( ret = context - > pwent_methods - > setsampwent ( context - > pwent_methods , update , acb_mask ) ) ) {
2002-07-15 14:35:28 +04:00
context - > pwent_methods = context - > pwent_methods - > next ;
if ( context - > pwent_methods = = NULL )
2002-09-26 22:58:34 +04:00
return NT_STATUS_UNSUCCESSFUL ;
2002-07-15 14:35:28 +04:00
}
2002-09-26 22:58:34 +04:00
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
static void context_endsampwent ( struct pdb_context * context )
{
2002-07-15 14:35:28 +04:00
if ( ( ! context ) ) {
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ;
}
2002-07-15 14:35:28 +04:00
if ( context - > pwent_methods & & context - > pwent_methods - > endsampwent )
context - > pwent_methods - > endsampwent ( context - > pwent_methods ) ;
/* So we won't get strange data when calling getsampwent now */
context - > pwent_methods = NULL ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-09-26 22:58:34 +04:00
static NTSTATUS context_getsampwent ( struct pdb_context * context , SAM_ACCOUNT * user )
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
{
2002-09-26 22:58:34 +04:00
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
2002-07-15 14:35:28 +04:00
if ( ( ! context ) | | ( ! context - > pwent_methods ) ) {
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
2002-09-26 22:58:34 +04:00
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-07-15 14:35:28 +04:00
/* Loop until we find something useful */
2002-09-26 22:58:34 +04:00
while ( NT_STATUS_IS_ERR ( ret = context - > pwent_methods - > getsampwent ( context - > pwent_methods , user ) ) ) {
2002-07-15 14:35:28 +04:00
2002-09-26 22:58:34 +04:00
context - > pwent_methods - > endsampwent ( context - > pwent_methods ) ;
2002-07-15 14:35:28 +04:00
context - > pwent_methods = context - > pwent_methods - > next ;
/* All methods are checked now. There are no more entries */
if ( context - > pwent_methods = = NULL )
2002-09-26 22:58:34 +04:00
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
2005-01-19 19:13:26 +03:00
context - > pwent_methods - > setsampwent ( context - > pwent_methods , False , 0 ) ;
2002-07-15 14:35:28 +04:00
}
user - > methods = context - > pwent_methods ;
2004-01-29 23:14:50 +03:00
pdb_force_pw_initialization ( user ) ;
2002-09-26 22:58:34 +04:00
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-09-26 22:58:34 +04:00
static NTSTATUS context_getsampwnam ( struct pdb_context * context , SAM_ACCOUNT * sam_acct , const char * username )
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
{
2002-09-26 22:58:34 +04:00
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
2002-07-15 14:35:28 +04:00
struct pdb_methods * curmethods ;
if ( ( ! context ) ) {
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
2002-09-26 22:58:34 +04:00
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-07-15 14:35:28 +04:00
curmethods = context - > pdb_methods ;
while ( curmethods ) {
2002-09-26 22:58:34 +04:00
if ( NT_STATUS_IS_OK ( ret = curmethods - > getsampwnam ( curmethods , sam_acct , username ) ) ) {
2004-01-29 23:14:50 +03:00
pdb_force_pw_initialization ( sam_acct ) ;
2002-07-15 14:35:28 +04:00
sam_acct - > methods = curmethods ;
2002-09-26 22:58:34 +04:00
return ret ;
2002-07-15 14:35:28 +04:00
}
curmethods = curmethods - > next ;
}
2002-09-26 22:58:34 +04:00
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-09-26 22:58:34 +04:00
static NTSTATUS context_getsampwsid ( struct pdb_context * context , SAM_ACCOUNT * sam_acct , const DOM_SID * sid )
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
{
2002-09-26 22:58:34 +04:00
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
2002-07-15 14:35:28 +04:00
struct pdb_methods * curmethods ;
if ( ( ! context ) ) {
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
2002-09-26 22:58:34 +04:00
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-07-15 14:35:28 +04:00
curmethods = context - > pdb_methods ;
while ( curmethods ) {
2002-09-26 22:58:34 +04:00
if ( NT_STATUS_IS_OK ( ret = curmethods - > getsampwsid ( curmethods , sam_acct , sid ) ) ) {
2004-01-29 23:14:50 +03:00
pdb_force_pw_initialization ( sam_acct ) ;
2002-07-15 14:35:28 +04:00
sam_acct - > methods = curmethods ;
2002-09-26 22:58:34 +04:00
return ret ;
2002-07-15 14:35:28 +04:00
}
curmethods = curmethods - > next ;
}
2002-09-26 22:58:34 +04:00
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-09-26 22:58:34 +04:00
static NTSTATUS context_add_sam_account ( struct pdb_context * context , SAM_ACCOUNT * sam_acct )
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
{
2002-09-26 22:58:34 +04:00
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
2005-03-22 18:03:17 +03:00
const uint8 * lm_pw , * nt_pw ;
2004-02-04 22:46:29 +03:00
uint16 acb_flags ;
2002-09-26 22:58:34 +04:00
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
2002-09-26 22:58:34 +04:00
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-07-15 14:35:28 +04:00
2004-02-04 22:46:29 +03:00
/* disable acccounts with no passwords (that has not
been allowed by the ACB_PWNOTREQ bit */
lm_pw = pdb_get_lanman_passwd ( sam_acct ) ;
2004-02-12 20:09:01 +03:00
nt_pw = pdb_get_nt_passwd ( sam_acct ) ;
2004-02-04 22:46:29 +03:00
acb_flags = pdb_get_acct_ctrl ( sam_acct ) ;
if ( ! lm_pw & & ! nt_pw & & ! ( acb_flags & ACB_PWNOTREQ ) ) {
acb_flags | = ACB_DISABLED ;
2004-02-12 20:51:23 +03:00
pdb_set_acct_ctrl ( sam_acct , acb_flags , PDB_CHANGED ) ;
2004-02-04 22:46:29 +03:00
}
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
/** @todo This is where a 're-read on add' should be done */
2002-07-15 14:35:28 +04:00
/* We now add a new account to the first database listed.
* Should we ? */
return context - > pdb_methods - > add_sam_account ( context - > pdb_methods , sam_acct ) ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-09-26 22:58:34 +04:00
static NTSTATUS context_update_sam_account ( struct pdb_context * context , SAM_ACCOUNT * sam_acct )
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
{
2002-09-26 22:58:34 +04:00
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
2005-03-22 18:03:17 +03:00
const uint8 * lm_pw , * nt_pw ;
2004-02-04 22:46:29 +03:00
uint16 acb_flags ;
2002-09-26 22:58:34 +04:00
2002-07-15 14:35:28 +04:00
if ( ! context ) {
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
2002-09-26 22:58:34 +04:00
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-07-15 14:35:28 +04:00
if ( ! sam_acct | | ! sam_acct - > methods ) {
DEBUG ( 0 , ( " invalid sam_acct specified \n " ) ) ;
2002-09-26 22:58:34 +04:00
return ret ;
2002-07-15 14:35:28 +04:00
}
2004-02-04 22:46:29 +03:00
/* disable acccounts with no passwords (that has not
been allowed by the ACB_PWNOTREQ bit */
lm_pw = pdb_get_lanman_passwd ( sam_acct ) ;
2004-02-12 20:09:01 +03:00
nt_pw = pdb_get_nt_passwd ( sam_acct ) ;
2004-02-04 22:46:29 +03:00
acb_flags = pdb_get_acct_ctrl ( sam_acct ) ;
if ( ! lm_pw & & ! nt_pw & & ! ( acb_flags & ACB_PWNOTREQ ) ) {
acb_flags | = ACB_DISABLED ;
2004-02-12 20:51:23 +03:00
pdb_set_acct_ctrl ( sam_acct , acb_flags , PDB_CHANGED ) ;
2004-02-04 22:46:29 +03:00
}
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
/** @todo This is where a 're-read on update' should be done */
2002-07-15 14:35:28 +04:00
return sam_acct - > methods - > update_sam_account ( sam_acct - > methods , sam_acct ) ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-09-26 22:58:34 +04:00
static NTSTATUS context_delete_sam_account ( struct pdb_context * context , SAM_ACCOUNT * sam_acct )
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
{
2002-09-26 22:58:34 +04:00
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
2002-07-15 14:35:28 +04:00
struct pdb_methods * pdb_selected ;
if ( ! context ) {
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
2002-09-26 22:58:34 +04:00
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-07-15 14:35:28 +04:00
if ( ! sam_acct - > methods ) {
pdb_selected = context - > pdb_methods ;
/* There's no passdb backend specified for this account.
* Try to delete it in every passdb available
* Needed to delete accounts in smbpasswd that are not
* in / etc / passwd .
*/
while ( pdb_selected ) {
2002-09-26 22:58:34 +04:00
if ( NT_STATUS_IS_OK ( ret = pdb_selected - > delete_sam_account ( pdb_selected , sam_acct ) ) ) {
return ret ;
2002-07-15 14:35:28 +04:00
}
pdb_selected = pdb_selected - > next ;
}
2002-09-26 22:58:34 +04:00
return ret ;
2002-07-15 14:35:28 +04:00
}
if ( ! sam_acct - > methods - > delete_sam_account ) {
DEBUG ( 0 , ( " invalid sam_acct->methods->delete_sam_account \n " ) ) ;
2002-09-26 22:58:34 +04:00
return ret ;
2002-07-15 14:35:28 +04:00
}
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
2002-07-15 14:35:28 +04:00
return sam_acct - > methods - > delete_sam_account ( sam_acct - > methods , sam_acct ) ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2005-10-12 00:14:04 +04:00
static NTSTATUS context_rename_sam_account ( struct pdb_context * context , SAM_ACCOUNT * oldname , const char * newname )
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
struct pdb_methods * pdb_selected ;
if ( ! context ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
if ( ! oldname - > methods ) {
pdb_selected = context - > pdb_methods ;
/* There's no passdb backend specified for this account.
* Try to delete it in every passdb available
* Needed to delete accounts in smbpasswd that are not
* in / etc / passwd .
*/
while ( pdb_selected ) {
if ( NT_STATUS_IS_OK ( ret = pdb_selected - > rename_sam_account ( pdb_selected , oldname , newname ) ) ) {
return ret ;
}
pdb_selected = pdb_selected - > next ;
}
return ret ;
}
if ( ! oldname - > methods - > rename_sam_account ) {
DEBUG ( 0 , ( " invalid oldname->methods->rename_sam_account \n " ) ) ;
return ret ;
}
return oldname - > methods - > rename_sam_account ( oldname - > methods , oldname , newname ) ;
}
2005-03-05 04:22:53 +03:00
static NTSTATUS context_update_login_attempts ( struct pdb_context * context ,
SAM_ACCOUNT * sam_acct , BOOL success )
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ! context ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
if ( ! sam_acct | | ! sam_acct - > methods ) {
DEBUG ( 0 , ( " invalid sam_acct specified \n " ) ) ;
return ret ;
}
return sam_acct - > methods - > update_login_attempts ( sam_acct - > methods , sam_acct , success ) ;
}
2002-11-02 06:47:48 +03:00
static NTSTATUS context_getgrsid ( struct pdb_context * context ,
2003-06-18 19:24:10 +04:00
GROUP_MAP * map , DOM_SID sid )
2002-11-02 06:47:48 +03:00
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
struct pdb_methods * curmethods ;
if ( ( ! context ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
curmethods = context - > pdb_methods ;
while ( curmethods ) {
2003-06-18 19:24:10 +04:00
ret = curmethods - > getgrsid ( curmethods , map , sid ) ;
2002-11-02 06:47:48 +03:00
if ( NT_STATUS_IS_OK ( ret ) ) {
map - > methods = curmethods ;
return ret ;
}
curmethods = curmethods - > next ;
}
return ret ;
}
static NTSTATUS context_getgrgid ( struct pdb_context * context ,
2003-06-18 19:24:10 +04:00
GROUP_MAP * map , gid_t gid )
2002-11-02 06:47:48 +03:00
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
struct pdb_methods * curmethods ;
if ( ( ! context ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
curmethods = context - > pdb_methods ;
while ( curmethods ) {
2003-06-18 19:24:10 +04:00
ret = curmethods - > getgrgid ( curmethods , map , gid ) ;
2002-11-02 06:47:48 +03:00
if ( NT_STATUS_IS_OK ( ret ) ) {
map - > methods = curmethods ;
return ret ;
}
curmethods = curmethods - > next ;
}
return ret ;
}
static NTSTATUS context_getgrnam ( struct pdb_context * context ,
2003-06-25 21:41:05 +04:00
GROUP_MAP * map , const char * name )
2002-11-02 06:47:48 +03:00
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
struct pdb_methods * curmethods ;
if ( ( ! context ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
curmethods = context - > pdb_methods ;
while ( curmethods ) {
2003-06-18 19:24:10 +04:00
ret = curmethods - > getgrnam ( curmethods , map , name ) ;
2002-11-02 06:47:48 +03:00
if ( NT_STATUS_IS_OK ( ret ) ) {
map - > methods = curmethods ;
return ret ;
}
curmethods = curmethods - > next ;
}
return ret ;
}
static NTSTATUS context_add_group_mapping_entry ( struct pdb_context * context ,
GROUP_MAP * map )
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - > add_group_mapping_entry ( context - > pdb_methods ,
map ) ;
}
static NTSTATUS context_update_group_mapping_entry ( struct pdb_context * context ,
GROUP_MAP * map )
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - >
pdb_methods - > update_group_mapping_entry ( context - > pdb_methods , map ) ;
}
static NTSTATUS context_delete_group_mapping_entry ( struct pdb_context * context ,
DOM_SID sid )
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - >
pdb_methods - > delete_group_mapping_entry ( context - > pdb_methods , sid ) ;
}
static NTSTATUS context_enum_group_mapping ( struct pdb_context * context ,
enum SID_NAME_USE sid_name_use ,
2005-10-18 07:24:00 +04:00
GROUP_MAP * * pp_rmap , size_t * p_num_entries ,
2003-06-18 19:24:10 +04:00
BOOL unix_only )
2002-11-02 06:47:48 +03:00
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - > enum_group_mapping ( context - > pdb_methods ,
2005-10-18 07:24:00 +04:00
sid_name_use , pp_rmap ,
p_num_entries , unix_only ) ;
2002-11-02 06:47:48 +03:00
}
2005-02-20 16:47:16 +03:00
static NTSTATUS context_enum_group_members ( struct pdb_context * context ,
TALLOC_CTX * mem_ctx ,
const DOM_SID * group ,
2005-10-18 07:24:00 +04:00
uint32 * * pp_member_rids ,
size_t * p_num_members )
2005-02-20 16:47:16 +03:00
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - > enum_group_members ( context - > pdb_methods ,
mem_ctx , group ,
2005-10-18 07:24:00 +04:00
pp_member_rids ,
p_num_members ) ;
2005-02-20 16:47:16 +03:00
}
2004-11-12 18:49:47 +03:00
static NTSTATUS context_enum_group_memberships ( struct pdb_context * context ,
const char * username ,
gid_t primary_gid ,
2005-10-18 07:24:00 +04:00
DOM_SID * * pp_sids , gid_t * * pp_gids ,
size_t * p_num_groups )
2004-11-12 18:49:47 +03:00
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - >
enum_group_memberships ( context - > pdb_methods , username ,
2005-10-18 07:24:00 +04:00
primary_gid , pp_sids , pp_gids , p_num_groups ) ;
2004-11-12 18:49:47 +03:00
}
2004-04-07 16:43:44 +04:00
static NTSTATUS context_find_alias ( struct pdb_context * context ,
const char * name , DOM_SID * sid )
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - > find_alias ( context - > pdb_methods ,
name , sid ) ;
}
static NTSTATUS context_create_alias ( struct pdb_context * context ,
const char * name , uint32 * rid )
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - > create_alias ( context - > pdb_methods ,
name , rid ) ;
}
static NTSTATUS context_delete_alias ( struct pdb_context * context ,
const DOM_SID * sid )
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - > delete_alias ( context - > pdb_methods , sid ) ;
}
static NTSTATUS context_get_aliasinfo ( struct pdb_context * context ,
const DOM_SID * sid ,
struct acct_info * info )
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - > get_aliasinfo ( context - > pdb_methods ,
sid , info ) ;
}
static NTSTATUS context_set_aliasinfo ( struct pdb_context * context ,
const DOM_SID * sid ,
struct acct_info * info )
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - > set_aliasinfo ( context - > pdb_methods ,
sid , info ) ;
}
static NTSTATUS context_add_aliasmem ( struct pdb_context * context ,
const DOM_SID * alias ,
const DOM_SID * member )
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - > add_aliasmem ( context - > pdb_methods ,
alias , member ) ;
}
static NTSTATUS context_del_aliasmem ( struct pdb_context * context ,
const DOM_SID * alias ,
const DOM_SID * member )
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - > del_aliasmem ( context - > pdb_methods ,
alias , member ) ;
}
static NTSTATUS context_enum_aliasmem ( struct pdb_context * context ,
2005-10-18 07:24:00 +04:00
const DOM_SID * alias , DOM_SID * * pp_members ,
size_t * p_num )
2004-04-07 16:43:44 +04:00
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - > enum_aliasmem ( context - > pdb_methods ,
2005-10-18 07:24:00 +04:00
alias , pp_members , p_num ) ;
2004-04-07 16:43:44 +04:00
}
static NTSTATUS context_enum_alias_memberships ( struct pdb_context * context ,
2005-03-27 20:33:04 +04:00
TALLOC_CTX * mem_ctx ,
const DOM_SID * domain_sid ,
2005-03-28 07:27:44 +04:00
const DOM_SID * members ,
2005-10-18 07:24:00 +04:00
size_t num_members ,
uint32 * * pp_alias_rids ,
size_t * p_num_alias_rids )
2004-04-07 16:43:44 +04:00
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - >
2005-03-27 20:33:04 +04:00
enum_alias_memberships ( context - > pdb_methods , mem_ctx ,
domain_sid , members , num_members ,
2005-10-18 07:24:00 +04:00
pp_alias_rids , p_num_alias_rids ) ;
2004-04-07 16:43:44 +04:00
}
2005-01-22 06:37:09 +03:00
2005-03-22 23:50:29 +03:00
static NTSTATUS context_lookup_rids ( struct pdb_context * context ,
TALLOC_CTX * mem_ctx ,
const DOM_SID * domain_sid ,
2005-10-18 07:24:00 +04:00
size_t num_rids ,
2005-03-22 23:50:29 +03:00
uint32 * rids ,
2005-10-18 07:24:00 +04:00
const char * * * pp_names ,
uint32 * * pp_attrs )
2005-03-22 23:50:29 +03:00
{
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return ret ;
}
return context - > pdb_methods - > lookup_rids ( context - > pdb_methods ,
mem_ctx , domain_sid , num_rids ,
2005-10-18 07:24:00 +04:00
rids , pp_names , pp_attrs ) ;
2005-03-22 23:50:29 +03:00
}
2005-09-30 21:13:37 +04:00
static NTSTATUS context_get_account_policy ( struct pdb_context * context ,
int policy_index , uint32 * value )
2005-04-15 17:41:49 +04:00
{
2005-09-30 21:13:37 +04:00
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
2005-04-15 17:41:49 +04:00
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
2005-09-30 21:13:37 +04:00
return ret ;
2005-04-15 17:41:49 +04:00
}
2005-09-30 21:13:37 +04:00
return context - > pdb_methods - > get_account_policy ( context - > pdb_methods ,
policy_index , value ) ;
2005-04-15 17:41:49 +04:00
}
2005-09-30 21:13:37 +04:00
static NTSTATUS context_set_account_policy ( struct pdb_context * context ,
int policy_index , uint32 value )
2005-04-15 17:41:49 +04:00
{
2005-09-30 21:13:37 +04:00
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
2005-04-15 17:41:49 +04:00
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
2005-09-30 21:13:37 +04:00
return ret ;
2005-04-15 17:41:49 +04:00
}
2005-09-30 21:13:37 +04:00
return context - > pdb_methods - > set_account_policy ( context - > pdb_methods ,
policy_index , value ) ;
2005-04-15 17:41:49 +04:00
}
2005-09-30 21:13:37 +04:00
static NTSTATUS context_get_seq_num ( struct pdb_context * context , time_t * seq_num )
2005-04-15 17:41:49 +04:00
{
2005-09-30 21:13:37 +04:00
NTSTATUS ret = NT_STATUS_UNSUCCESSFUL ;
2005-04-15 17:41:49 +04:00
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
2005-09-30 21:13:37 +04:00
return ret ;
2005-04-15 17:41:49 +04:00
}
2005-09-30 21:13:37 +04:00
return context - > pdb_methods - > get_seq_num ( context - > pdb_methods , seq_num ) ;
2005-04-15 17:41:49 +04:00
}
2005-09-30 21:13:37 +04:00
2002-07-15 14:35:28 +04:00
/******************************************************************
Free and cleanup a pdb context , any associated data and anything
that the attached modules might have associated .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-03-19 16:57:53 +03:00
static void free_pdb_context ( struct pdb_context * * context )
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
{
2002-07-15 14:35:28 +04:00
struct pdb_methods * pdb_selected = ( * context ) - > pdb_methods ;
while ( pdb_selected ) {
2002-10-25 04:38:10 +04:00
if ( pdb_selected - > free_private_data )
pdb_selected - > free_private_data ( & ( pdb_selected - > private_data ) ) ;
2002-07-15 14:35:28 +04:00
pdb_selected = pdb_selected - > next ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
talloc_destroy ( ( * context ) - > mem_ctx ) ;
* context = NULL ;
}
2005-09-30 21:13:37 +04:00
static BOOL context_search_users ( struct pdb_context * context ,
struct pdb_search * search , uint16 acct_flags )
{
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return False ;
}
return context - > pdb_methods - > search_users ( context - > pdb_methods ,
search , acct_flags ) ;
}
static BOOL context_search_groups ( struct pdb_context * context ,
struct pdb_search * search )
{
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return False ;
}
return context - > pdb_methods - > search_groups ( context - > pdb_methods ,
search ) ;
}
static BOOL context_search_aliases ( struct pdb_context * context ,
struct pdb_search * search ,
const DOM_SID * sid )
{
if ( ( ! context ) | | ( ! context - > pdb_methods ) ) {
DEBUG ( 0 , ( " invalid pdb_context specified! \n " ) ) ;
return False ;
}
return context - > pdb_methods - > search_aliases ( context - > pdb_methods ,
search , sid ) ;
}
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
/******************************************************************
2002-07-15 14:35:28 +04:00
Make a pdb_methods from scratch
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static NTSTATUS make_pdb_methods_name ( struct pdb_methods * * methods , struct pdb_context * context , const char * selected )
{
char * module_name = smb_xstrdup ( selected ) ;
char * module_location = NULL , * p ;
2003-04-15 20:01:14 +04:00
struct pdb_init_function_entry * entry ;
2002-07-15 14:35:28 +04:00
NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL ;
2003-04-15 20:01:14 +04:00
lazy_initialize_passdb ( ) ;
2002-07-15 14:35:28 +04:00
p = strchr ( module_name , ' : ' ) ;
if ( p ) {
* p = 0 ;
module_location = p + 1 ;
2003-09-05 23:59:55 +04:00
trim_char ( module_location , ' ' , ' ' ) ;
2002-07-15 14:35:28 +04:00
}
2003-09-05 23:59:55 +04:00
trim_char ( module_name , ' ' , ' ' ) ;
2002-07-15 14:35:28 +04:00
2003-04-15 20:01:14 +04:00
2002-07-15 14:35:28 +04:00
DEBUG ( 5 , ( " Attempting to find an passdb backend to match %s (%s) \n " , selected , module_name ) ) ;
2003-04-15 20:01:14 +04:00
entry = pdb_find_backend_entry ( module_name ) ;
/* Try to find a module that contains this module */
if ( ! entry ) {
DEBUG ( 2 , ( " No builtin backend found, trying to load plugin \n " ) ) ;
2003-05-10 15:49:51 +04:00
if ( NT_STATUS_IS_OK ( smb_probe_module ( " pdb " , module_name ) ) & & ! ( entry = pdb_find_backend_entry ( module_name ) ) ) {
2003-04-15 20:01:14 +04:00
DEBUG ( 0 , ( " Plugin is available, but doesn't register passdb backend %s \n " , module_name ) ) ;
2002-07-15 14:35:28 +04:00
SAFE_FREE ( module_name ) ;
2003-05-10 15:49:51 +04:00
return NT_STATUS_UNSUCCESSFUL ;
2002-07-15 14:35:28 +04:00
}
}
2003-04-15 20:01:14 +04:00
2002-07-15 14:35:28 +04:00
/* No such backend found */
2003-04-15 20:01:14 +04:00
if ( ! entry ) {
DEBUG ( 0 , ( " No builtin nor plugin backend for %s found \n " , module_name ) ) ;
SAFE_FREE ( module_name ) ;
return NT_STATUS_INVALID_PARAMETER ;
}
2003-04-28 21:48:48 +04:00
2003-04-15 20:01:14 +04:00
DEBUG ( 5 , ( " Found pdb backend %s \n " , module_name ) ) ;
nt_status = entry - > init ( context , methods , module_location ) ;
if ( NT_STATUS_IS_OK ( nt_status ) ) {
DEBUG ( 5 , ( " pdb backend %s has a valid init \n " , selected ) ) ;
} else {
DEBUG ( 0 , ( " pdb backend %s did not correctly init (error was %s) \n " , selected , nt_errstr ( nt_status ) ) ) ;
}
2002-07-15 14:35:28 +04:00
SAFE_FREE ( module_name ) ;
2003-04-15 20:01:14 +04:00
return nt_status ;
2002-07-15 14:35:28 +04:00
}
/******************************************************************
Make a pdb_context from scratch .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
static NTSTATUS make_pdb_context ( struct pdb_context * * context )
{
TALLOC_CTX * mem_ctx ;
2002-07-15 14:35:28 +04:00
2002-12-20 23:21:31 +03:00
mem_ctx = talloc_init ( " pdb_context internal allocation context " ) ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
if ( ! mem_ctx ) {
DEBUG ( 0 , ( " make_pdb_context: talloc init failed! \n " ) ) ;
return NT_STATUS_NO_MEMORY ;
}
2004-12-07 21:25:53 +03:00
* context = TALLOC_P ( mem_ctx , struct pdb_context ) ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
if ( ! * context ) {
DEBUG ( 0 , ( " make_pdb_context: talloc failed! \n " ) ) ;
return NT_STATUS_NO_MEMORY ;
}
ZERO_STRUCTP ( * context ) ;
( * context ) - > mem_ctx = mem_ctx ;
( * context ) - > pdb_setsampwent = context_setsampwent ;
( * context ) - > pdb_endsampwent = context_endsampwent ;
( * context ) - > pdb_getsampwent = context_getsampwent ;
( * context ) - > pdb_getsampwnam = context_getsampwnam ;
2002-07-15 14:35:28 +04:00
( * context ) - > pdb_getsampwsid = context_getsampwsid ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
( * context ) - > pdb_add_sam_account = context_add_sam_account ;
( * context ) - > pdb_update_sam_account = context_update_sam_account ;
( * context ) - > pdb_delete_sam_account = context_delete_sam_account ;
2005-10-12 00:14:04 +04:00
( * context ) - > pdb_rename_sam_account = context_rename_sam_account ;
2005-03-05 04:22:53 +03:00
( * context ) - > pdb_update_login_attempts = context_update_login_attempts ;
2002-11-02 06:47:48 +03:00
( * context ) - > pdb_getgrsid = context_getgrsid ;
( * context ) - > pdb_getgrgid = context_getgrgid ;
( * context ) - > pdb_getgrnam = context_getgrnam ;
( * context ) - > pdb_add_group_mapping_entry = context_add_group_mapping_entry ;
( * context ) - > pdb_update_group_mapping_entry = context_update_group_mapping_entry ;
( * context ) - > pdb_delete_group_mapping_entry = context_delete_group_mapping_entry ;
( * context ) - > pdb_enum_group_mapping = context_enum_group_mapping ;
2005-02-20 16:47:16 +03:00
( * context ) - > pdb_enum_group_members = context_enum_group_members ;
2004-11-12 18:49:47 +03:00
( * context ) - > pdb_enum_group_memberships = context_enum_group_memberships ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
2004-04-07 16:43:44 +04:00
( * context ) - > pdb_find_alias = context_find_alias ;
( * context ) - > pdb_create_alias = context_create_alias ;
( * context ) - > pdb_delete_alias = context_delete_alias ;
( * context ) - > pdb_get_aliasinfo = context_get_aliasinfo ;
( * context ) - > pdb_set_aliasinfo = context_set_aliasinfo ;
( * context ) - > pdb_add_aliasmem = context_add_aliasmem ;
( * context ) - > pdb_del_aliasmem = context_del_aliasmem ;
( * context ) - > pdb_enum_aliasmem = context_enum_aliasmem ;
( * context ) - > pdb_enum_alias_memberships = context_enum_alias_memberships ;
2005-03-22 23:50:29 +03:00
( * context ) - > pdb_lookup_rids = context_lookup_rids ;
2004-04-07 16:43:44 +04:00
2005-09-30 21:13:37 +04:00
( * context ) - > pdb_get_account_policy = context_get_account_policy ;
( * context ) - > pdb_set_account_policy = context_set_account_policy ;
( * context ) - > pdb_get_seq_num = context_get_seq_num ;
2005-04-15 17:41:49 +04:00
( * context ) - > pdb_search_users = context_search_users ;
( * context ) - > pdb_search_groups = context_search_groups ;
( * context ) - > pdb_search_aliases = context_search_aliases ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
( * context ) - > free_fn = free_pdb_context ;
2002-07-15 14:35:28 +04:00
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
return NT_STATUS_OK ;
}
/******************************************************************
2002-07-15 14:35:28 +04:00
Make a pdb_context , given an array of strings
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
2002-11-13 02:20:50 +03:00
NTSTATUS make_pdb_context_list ( struct pdb_context * * context , const char * * selected )
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
{
2002-07-15 14:35:28 +04:00
int i = 0 ;
struct pdb_methods * curmethods , * tmpmethods ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL ;
2003-06-30 18:55:45 +04:00
BOOL have_guest = False ;
2002-01-25 14:44:15 +03:00
2002-07-15 14:35:28 +04:00
if ( ! NT_STATUS_IS_OK ( nt_status = make_pdb_context ( context ) ) ) {
return nt_status ;
2002-01-25 14:44:15 +03:00
}
2003-06-20 21:39:53 +04:00
if ( ! selected ) {
DEBUG ( 0 , ( " ERROR: empty passdb backend list! \n " ) ) ;
return nt_status ;
}
2002-07-15 14:35:28 +04:00
while ( selected [ i ] ) {
2003-06-30 18:55:45 +04:00
if ( strcmp ( selected [ i ] , " guest " ) = = 0 ) {
have_guest = True ;
}
2002-07-15 14:35:28 +04:00
/* Try to initialise pdb */
DEBUG ( 5 , ( " Trying to load: %s \n " , selected [ i ] ) ) ;
if ( ! NT_STATUS_IS_OK ( nt_status = make_pdb_methods_name ( & curmethods , * context , selected [ i ] ) ) ) {
DEBUG ( 1 , ( " Loading %s failed! \n " , selected [ i ] ) ) ;
free_pdb_context ( context ) ;
return nt_status ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-07-15 14:35:28 +04:00
curmethods - > parent = * context ;
DLIST_ADD_END ( ( * context ) - > pdb_methods , curmethods , tmpmethods ) ;
i + + ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2003-06-30 18:55:45 +04:00
if ( have_guest )
return NT_STATUS_OK ;
if ( ( lp_guestaccount ( ) = = NULL ) | |
( * lp_guestaccount ( ) = = ' \0 ' ) ) {
/* We explicitly don't want guest access. No idea what
else that breaks , but be it that way . */
return NT_STATUS_OK ;
}
if ( ! NT_STATUS_IS_OK ( nt_status = make_pdb_methods_name ( & curmethods ,
* context ,
" guest " ) ) ) {
DEBUG ( 1 , ( " Loading guest module failed! \n " ) ) ;
free_pdb_context ( context ) ;
return nt_status ;
}
curmethods - > parent = * context ;
DLIST_ADD_END ( ( * context ) - > pdb_methods , curmethods , tmpmethods ) ;
2002-07-15 14:35:28 +04:00
return NT_STATUS_OK ;
}
2002-04-04 07:53:43 +04:00
2002-07-15 14:35:28 +04:00
/******************************************************************
Make a pdb_context , given a text string .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-04-04 07:53:43 +04:00
2002-07-15 14:35:28 +04:00
NTSTATUS make_pdb_context_string ( struct pdb_context * * context , const char * selected )
{
NTSTATUS ret ;
2002-08-17 21:00:51 +04:00
char * * newsel = str_list_make ( selected , NULL ) ;
2002-11-13 02:20:50 +03:00
ret = make_pdb_context_list ( context , ( const char * * ) newsel ) ;
2002-07-15 14:35:28 +04:00
str_list_free ( & newsel ) ;
return ret ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
/******************************************************************
2002-04-04 07:53:43 +04:00
Return an already initialised pdb_context , to facilitate backward
compatibility ( see functions below ) .
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static struct pdb_context * pdb_get_static_context ( BOOL reload )
{
static struct pdb_context * pdb_context = NULL ;
2002-07-15 14:35:28 +04:00
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
if ( ( pdb_context ) & & ( reload ) ) {
pdb_context - > free_fn ( & pdb_context ) ;
2003-06-22 14:09:52 +04:00
if ( ! NT_STATUS_IS_OK ( make_pdb_context_list ( & pdb_context , lp_passdb_backend ( ) ) ) ) {
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
return NULL ;
}
}
2002-07-15 14:35:28 +04:00
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
if ( ! pdb_context ) {
2003-06-22 14:09:52 +04:00
if ( ! NT_STATUS_IS_OK ( make_pdb_context_list ( & pdb_context , lp_passdb_backend ( ) ) ) ) {
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
return NULL ;
}
}
2002-07-15 14:35:28 +04:00
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
return pdb_context ;
}
/******************************************************************
2002-04-04 07:53:43 +04:00
Backward compatibility functions for the original passdb interface
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-01-19 19:13:26 +03:00
BOOL pdb_setsampwent ( BOOL update , uint16 acb_mask )
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
2005-01-19 19:13:26 +03:00
return NT_STATUS_IS_OK ( pdb_context - > pdb_setsampwent ( pdb_context , update , acb_mask ) ) ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
void pdb_endsampwent ( void )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return ;
}
pdb_context - > pdb_endsampwent ( pdb_context ) ;
}
BOOL pdb_getsampwent ( SAM_ACCOUNT * user )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
2002-09-26 22:58:34 +04:00
return NT_STATUS_IS_OK ( pdb_context - > pdb_getsampwent ( pdb_context , user ) ) ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2004-11-12 18:30:51 +03:00
static SAM_ACCOUNT * sam_account_cache = NULL ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
BOOL pdb_getsampwnam ( SAM_ACCOUNT * sam_acct , const char * username )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
2004-11-12 18:30:51 +03:00
if ( ! NT_STATUS_IS_OK ( pdb_context - > pdb_getsampwnam ( pdb_context ,
sam_acct , username ) ) )
return False ;
if ( sam_account_cache ! = NULL ) {
pdb_free_sam ( & sam_account_cache ) ;
sam_account_cache = NULL ;
}
pdb_copy_sam_account ( sam_acct , & sam_account_cache ) ;
return True ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2002-08-17 21:00:51 +04:00
BOOL pdb_getsampwsid ( SAM_ACCOUNT * sam_acct , const DOM_SID * sid )
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
2004-11-12 18:30:51 +03:00
if ( ( sam_account_cache ! = NULL ) & &
( sid_equal ( sid , pdb_get_user_sid ( sam_account_cache ) ) ) )
return pdb_copy_sam_account ( sam_account_cache , & sam_acct ) ;
2002-09-26 22:58:34 +04:00
return NT_STATUS_IS_OK ( pdb_context - > pdb_getsampwsid ( pdb_context , sam_acct , sid ) ) ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
BOOL pdb_add_sam_account ( SAM_ACCOUNT * sam_acct )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
2004-01-30 17:59:40 +03:00
2002-09-26 22:58:34 +04:00
return NT_STATUS_IS_OK ( pdb_context - > pdb_add_sam_account ( pdb_context , sam_acct ) ) ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
BOOL pdb_update_sam_account ( SAM_ACCOUNT * sam_acct )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
2004-11-12 18:30:51 +03:00
if ( sam_account_cache ! = NULL ) {
pdb_free_sam ( & sam_account_cache ) ;
sam_account_cache = NULL ;
}
2002-09-26 22:58:34 +04:00
return NT_STATUS_IS_OK ( pdb_context - > pdb_update_sam_account ( pdb_context , sam_acct ) ) ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
BOOL pdb_delete_sam_account ( SAM_ACCOUNT * sam_acct )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
2002-07-15 14:35:28 +04:00
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
if ( ! pdb_context ) {
return False ;
}
2002-07-15 14:35:28 +04:00
2004-11-12 18:30:51 +03:00
if ( sam_account_cache ! = NULL ) {
pdb_free_sam ( & sam_account_cache ) ;
sam_account_cache = NULL ;
}
2002-09-26 22:58:34 +04:00
return NT_STATUS_IS_OK ( pdb_context - > pdb_delete_sam_account ( pdb_context , sam_acct ) ) ;
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
}
2005-10-12 00:14:04 +04:00
NTSTATUS pdb_rename_sam_account ( SAM_ACCOUNT * oldname , const char * newname )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return NT_STATUS_NOT_IMPLEMENTED ;
}
if ( sam_account_cache ! = NULL ) {
pdb_free_sam ( & sam_account_cache ) ;
sam_account_cache = NULL ;
}
return pdb_context - > pdb_rename_sam_account ( pdb_context , oldname , newname ) ;
}
2005-03-05 04:22:53 +03:00
NTSTATUS pdb_update_login_attempts ( SAM_ACCOUNT * sam_acct , BOOL success )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return NT_STATUS_NOT_IMPLEMENTED ;
}
return pdb_context - > pdb_update_login_attempts ( pdb_context , sam_acct , success ) ;
}
2003-06-18 19:24:10 +04:00
BOOL pdb_getgrsid ( GROUP_MAP * map , DOM_SID sid )
2002-11-02 06:47:48 +03:00
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
2003-06-18 19:24:10 +04:00
pdb_getgrsid ( pdb_context , map , sid ) ) ;
2002-11-02 06:47:48 +03:00
}
2003-06-18 19:24:10 +04:00
BOOL pdb_getgrgid ( GROUP_MAP * map , gid_t gid )
2002-11-02 06:47:48 +03:00
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
2003-06-18 19:24:10 +04:00
pdb_getgrgid ( pdb_context , map , gid ) ) ;
2002-11-02 06:47:48 +03:00
}
2004-02-26 14:07:06 +03:00
BOOL pdb_getgrnam ( GROUP_MAP * map , const char * name )
2002-11-02 06:47:48 +03:00
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
2003-06-18 19:24:10 +04:00
pdb_getgrnam ( pdb_context , map , name ) ) ;
2002-11-02 06:47:48 +03:00
}
BOOL pdb_add_group_mapping_entry ( GROUP_MAP * map )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
pdb_add_group_mapping_entry ( pdb_context , map ) ) ;
}
BOOL pdb_update_group_mapping_entry ( GROUP_MAP * map )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
pdb_update_group_mapping_entry ( pdb_context , map ) ) ;
}
BOOL pdb_delete_group_mapping_entry ( DOM_SID sid )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
pdb_delete_group_mapping_entry ( pdb_context , sid ) ) ;
}
2005-10-18 07:24:00 +04:00
BOOL pdb_enum_group_mapping ( enum SID_NAME_USE sid_name_use , GROUP_MAP * * pp_rmap ,
size_t * p_num_entries , BOOL unix_only )
2002-11-02 06:47:48 +03:00
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
pdb_enum_group_mapping ( pdb_context , sid_name_use ,
2005-10-18 07:24:00 +04:00
pp_rmap , p_num_entries , unix_only ) ) ;
2002-11-02 06:47:48 +03:00
}
2005-02-20 16:47:16 +03:00
NTSTATUS pdb_enum_group_members ( TALLOC_CTX * mem_ctx ,
const DOM_SID * sid ,
2005-10-18 07:24:00 +04:00
uint32 * * pp_member_rids ,
size_t * p_num_members )
2005-02-20 16:47:16 +03:00
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return NT_STATUS_UNSUCCESSFUL ;
}
return pdb_context - > pdb_enum_group_members ( pdb_context , mem_ctx , sid ,
2005-10-18 07:24:00 +04:00
pp_member_rids , p_num_members ) ;
2005-02-20 16:47:16 +03:00
}
2004-11-12 18:49:47 +03:00
NTSTATUS pdb_enum_group_memberships ( const char * username , gid_t primary_gid ,
2005-10-18 07:24:00 +04:00
DOM_SID * * pp_sids , gid_t * * pp_gids ,
size_t * p_num_groups )
2004-11-12 18:49:47 +03:00
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return NT_STATUS_UNSUCCESSFUL ;
}
return pdb_context - > pdb_enum_group_memberships ( pdb_context , username ,
2005-10-18 07:24:00 +04:00
primary_gid , pp_sids , pp_gids ,
p_num_groups ) ;
2004-11-12 18:49:47 +03:00
}
2004-04-07 16:43:44 +04:00
BOOL pdb_find_alias ( const char * name , DOM_SID * sid )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - > pdb_find_alias ( pdb_context ,
name , sid ) ) ;
}
2004-04-10 20:09:48 +04:00
NTSTATUS pdb_create_alias ( const char * name , uint32 * rid )
2004-04-07 16:43:44 +04:00
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
2004-04-10 20:09:48 +04:00
return NT_STATUS_NOT_IMPLEMENTED ;
2004-04-07 16:43:44 +04:00
}
2004-04-10 20:09:48 +04:00
return pdb_context - > pdb_create_alias ( pdb_context , name , rid ) ;
2004-04-07 16:43:44 +04:00
}
BOOL pdb_delete_alias ( const DOM_SID * sid )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - > pdb_delete_alias ( pdb_context ,
sid ) ) ;
}
BOOL pdb_get_aliasinfo ( const DOM_SID * sid , struct acct_info * info )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - > pdb_get_aliasinfo ( pdb_context , sid ,
info ) ) ;
}
BOOL pdb_set_aliasinfo ( const DOM_SID * sid , struct acct_info * info )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - > pdb_set_aliasinfo ( pdb_context , sid ,
info ) ) ;
}
BOOL pdb_add_aliasmem ( const DOM_SID * alias , const DOM_SID * member )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
pdb_add_aliasmem ( pdb_context , alias , member ) ) ;
}
BOOL pdb_del_aliasmem ( const DOM_SID * alias , const DOM_SID * member )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
pdb_del_aliasmem ( pdb_context , alias , member ) ) ;
}
BOOL pdb_enum_aliasmem ( const DOM_SID * alias ,
2005-10-18 07:24:00 +04:00
DOM_SID * * pp_members , size_t * p_num_members )
2004-04-07 16:43:44 +04:00
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
pdb_enum_aliasmem ( pdb_context , alias ,
2005-10-18 07:24:00 +04:00
pp_members , p_num_members ) ) ;
2004-04-07 16:43:44 +04:00
}
2005-03-27 20:33:04 +04:00
BOOL pdb_enum_alias_memberships ( TALLOC_CTX * mem_ctx , const DOM_SID * domain_sid ,
2005-10-18 07:24:00 +04:00
const DOM_SID * members , size_t num_members ,
uint32 * * pp_alias_rids , size_t * p_num_alias_rids )
2004-04-07 16:43:44 +04:00
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
2005-03-27 20:33:04 +04:00
pdb_enum_alias_memberships ( pdb_context , mem_ctx ,
domain_sid ,
members , num_members ,
2005-10-18 07:24:00 +04:00
pp_alias_rids ,
p_num_alias_rids ) ) ;
2004-04-07 16:43:44 +04:00
}
2005-03-22 23:50:29 +03:00
NTSTATUS pdb_lookup_rids ( TALLOC_CTX * mem_ctx ,
const DOM_SID * domain_sid ,
int num_rids ,
uint32 * rids ,
const char * * * names ,
uint32 * * attrs )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return NT_STATUS_NOT_IMPLEMENTED ;
}
return pdb_context - > pdb_lookup_rids ( pdb_context , mem_ctx , domain_sid ,
num_rids , rids , names , attrs ) ;
}
2005-09-30 21:13:37 +04:00
BOOL pdb_get_account_policy ( int policy_index , uint32 * value )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
pdb_get_account_policy ( pdb_context , policy_index , value ) ) ;
}
BOOL pdb_set_account_policy ( int policy_index , uint32 value )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
pdb_set_account_policy ( pdb_context , policy_index , value ) ) ;
}
BOOL pdb_get_seq_num ( time_t * seq_num )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
if ( ! pdb_context ) {
return False ;
}
return NT_STATUS_IS_OK ( pdb_context - >
pdb_get_seq_num ( pdb_context , seq_num ) ) ;
}
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
/***************************************************************
2002-07-15 14:35:28 +04:00
Initialize the static context ( at smbd startup etc ) .
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
2002-07-15 14:35:28 +04:00
If uninitialised , context will auto - init on first use .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
BOOL initialize_password_db ( BOOL reload )
{
return ( pdb_get_static_context ( reload ) ! = NULL ) ;
}
2003-03-22 12:03:46 +03:00
/***************************************************************************
Default implementations of some functions .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static NTSTATUS pdb_default_getsampwnam ( struct pdb_methods * methods , SAM_ACCOUNT * user , const char * sname )
{
return NT_STATUS_NO_SUCH_USER ;
}
static NTSTATUS pdb_default_getsampwsid ( struct pdb_methods * my_methods , SAM_ACCOUNT * user , const DOM_SID * sid )
{
return NT_STATUS_NO_SUCH_USER ;
}
static NTSTATUS pdb_default_add_sam_account ( struct pdb_methods * methods , SAM_ACCOUNT * newpwd )
{
DEBUG ( 0 , ( " this backend (%s) should not be listed as the first passdb backend! You can't add users to it. \n " , methods - > name ) ) ;
return NT_STATUS_NOT_IMPLEMENTED ;
}
static NTSTATUS pdb_default_update_sam_account ( struct pdb_methods * methods , SAM_ACCOUNT * newpwd )
{
return NT_STATUS_NOT_IMPLEMENTED ;
}
static NTSTATUS pdb_default_delete_sam_account ( struct pdb_methods * methods , SAM_ACCOUNT * pwd )
{
return NT_STATUS_NOT_IMPLEMENTED ;
}
2005-10-12 00:14:04 +04:00
static NTSTATUS pdb_default_rename_sam_account ( struct pdb_methods * methods , SAM_ACCOUNT * pwd , const char * newname )
{
return NT_STATUS_NOT_IMPLEMENTED ;
}
2005-03-05 04:22:53 +03:00
static NTSTATUS pdb_default_update_login_attempts ( struct pdb_methods * methods , SAM_ACCOUNT * newpwd , BOOL success )
{
return NT_STATUS_OK ;
}
2005-01-19 19:13:26 +03:00
static NTSTATUS pdb_default_setsampwent ( struct pdb_methods * methods , BOOL update , uint16 acb_mask )
2003-03-22 12:03:46 +03:00
{
return NT_STATUS_NOT_IMPLEMENTED ;
}
static NTSTATUS pdb_default_getsampwent ( struct pdb_methods * methods , SAM_ACCOUNT * user )
{
return NT_STATUS_NOT_IMPLEMENTED ;
}
static void pdb_default_endsampwent ( struct pdb_methods * methods )
{
return ; /* NT_STATUS_NOT_IMPLEMENTED; */
}
2005-09-30 21:13:37 +04:00
static NTSTATUS pdb_default_get_account_policy ( struct pdb_methods * methods , int policy_index , uint32 * value )
{
return account_policy_get ( policy_index , value ) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL ;
}
static NTSTATUS pdb_default_set_account_policy ( struct pdb_methods * methods , int policy_index , uint32 value )
{
return account_policy_set ( policy_index , value ) ? NT_STATUS_OK : NT_STATUS_UNSUCCESSFUL ;
}
static NTSTATUS pdb_default_get_seq_num ( struct pdb_methods * methods , time_t * seq_num )
{
* seq_num = time ( NULL ) ;
return NT_STATUS_OK ;
}
2005-02-20 16:47:16 +03:00
static void add_uid_to_array_unique ( TALLOC_CTX * mem_ctx ,
2005-10-18 07:24:00 +04:00
uid_t uid , uid_t * * pp_uids , size_t * p_num )
2005-02-20 16:47:16 +03:00
{
2005-10-18 07:24:00 +04:00
size_t i ;
2005-02-20 16:47:16 +03:00
2005-10-18 07:24:00 +04:00
for ( i = 0 ; i < * p_num ; i + + ) {
if ( ( * pp_uids ) [ i ] = = uid )
2005-02-20 16:47:16 +03:00
return ;
}
2005-10-18 07:24:00 +04:00
* pp_uids = TALLOC_REALLOC_ARRAY ( mem_ctx , * pp_uids , uid_t , * p_num + 1 ) ;
2005-02-20 16:47:16 +03:00
2005-10-18 07:24:00 +04:00
if ( * pp_uids = = NULL )
2005-02-20 16:47:16 +03:00
return ;
2005-10-18 07:24:00 +04:00
( * pp_uids ) [ * p_num ] = uid ;
* p_num + = 1 ;
2005-02-20 16:47:16 +03:00
}
2005-10-18 07:24:00 +04:00
static BOOL get_memberuids ( TALLOC_CTX * mem_ctx , gid_t gid , uid_t * * pp_uids , size_t * p_num )
2005-02-20 16:47:16 +03:00
{
struct group * grp ;
char * * gr ;
struct sys_pwent * userlist , * user ;
2005-10-18 07:24:00 +04:00
* pp_uids = NULL ;
* p_num = 0 ;
2005-02-20 16:47:16 +03:00
/* We only look at our own sam, so don't care about imported stuff */
winbind_off ( ) ;
if ( ( grp = getgrgid ( gid ) ) = = NULL ) {
winbind_on ( ) ;
return False ;
}
/* Primary group members */
userlist = getpwent_list ( ) ;
for ( user = userlist ; user ! = NULL ; user = user - > next ) {
if ( user - > pw_gid ! = gid )
continue ;
2005-10-18 07:24:00 +04:00
add_uid_to_array_unique ( mem_ctx , user - > pw_uid , pp_uids , p_num ) ;
2005-02-20 16:47:16 +03:00
}
pwent_free ( userlist ) ;
/* Secondary group members */
for ( gr = grp - > gr_mem ; ( * gr ! = NULL ) & & ( ( * gr ) [ 0 ] ! = ' \0 ' ) ; gr + = 1 ) {
struct passwd * pw = getpwnam ( * gr ) ;
if ( pw = = NULL )
continue ;
2005-10-18 07:24:00 +04:00
add_uid_to_array_unique ( mem_ctx , pw - > pw_uid , pp_uids , p_num ) ;
2005-02-20 16:47:16 +03:00
}
winbind_on ( ) ;
return True ;
}
NTSTATUS pdb_default_enum_group_members ( struct pdb_methods * methods ,
TALLOC_CTX * mem_ctx ,
const DOM_SID * group ,
2005-10-18 07:24:00 +04:00
uint32 * * pp_member_rids ,
size_t * p_num_members )
2005-02-20 16:47:16 +03:00
{
gid_t gid ;
uid_t * uids ;
2005-10-18 07:24:00 +04:00
size_t i , num_uids ;
2005-02-20 16:47:16 +03:00
2005-10-18 07:24:00 +04:00
* pp_member_rids = NULL ;
* p_num_members = 0 ;
2005-02-20 16:47:16 +03:00
if ( ! NT_STATUS_IS_OK ( sid_to_gid ( group , & gid ) ) )
return NT_STATUS_NO_SUCH_GROUP ;
if ( ! get_memberuids ( mem_ctx , gid , & uids , & num_uids ) )
return NT_STATUS_NO_SUCH_GROUP ;
if ( num_uids = = 0 )
return NT_STATUS_OK ;
2005-10-18 07:24:00 +04:00
* pp_member_rids = TALLOC_ZERO_ARRAY ( mem_ctx , uint32 , num_uids ) ;
2005-02-20 16:47:16 +03:00
for ( i = 0 ; i < num_uids ; i + + ) {
DOM_SID sid ;
if ( ! NT_STATUS_IS_OK ( uid_to_sid ( & sid , uids [ i ] ) ) ) {
DEBUG ( 1 , ( " Could not map member uid to SID \n " ) ) ;
continue ;
}
if ( ! sid_check_is_in_our_domain ( & sid ) ) {
DEBUG ( 1 , ( " Inconsistent SAM -- group member uid not "
" in our domain \n " ) ) ;
continue ;
}
2005-10-18 07:24:00 +04:00
sid_peek_rid ( & sid , & ( * pp_member_rids ) [ * p_num_members ] ) ;
* p_num_members + = 1 ;
2005-02-20 16:47:16 +03:00
}
return NT_STATUS_OK ;
}
2005-03-22 23:50:29 +03:00
NTSTATUS pdb_default_lookup_rids ( struct pdb_methods * methods ,
TALLOC_CTX * mem_ctx ,
const DOM_SID * domain_sid ,
int num_rids ,
uint32 * rids ,
const char * * * names ,
uint32 * * attrs )
{
int i ;
NTSTATUS result ;
BOOL have_mapped = False ;
BOOL have_unmapped = False ;
( * names ) = TALLOC_ZERO_ARRAY ( mem_ctx , const char * , num_rids ) ;
( * attrs ) = TALLOC_ZERO_ARRAY ( mem_ctx , uint32 , num_rids ) ;
if ( ( num_rids ! = 0 ) & & ( ( ( * names ) = = NULL ) | | ( ( * attrs ) = = NULL ) ) )
return NT_STATUS_NO_MEMORY ;
if ( ! sid_equal ( domain_sid , get_global_sam_sid ( ) ) ) {
/* TODO: Sooner or later we need to look up BUILTIN rids as
* well . - - vl */
goto done ;
}
for ( i = 0 ; i < num_rids ; i + + ) {
fstring tmpname ;
fstring domname ;
DOM_SID sid ;
enum SID_NAME_USE type ;
( * attrs ) [ i ] = SID_NAME_UNKNOWN ;
sid_copy ( & sid , domain_sid ) ;
sid_append_rid ( & sid , rids [ i ] ) ;
if ( lookup_sid ( & sid , domname , tmpname , & type ) ) {
( * attrs ) [ i ] = ( uint32 ) type ;
( * names ) [ i ] = talloc_strdup ( mem_ctx , tmpname ) ;
if ( ( * names ) [ i ] = = NULL )
return NT_STATUS_NO_MEMORY ;
DEBUG ( 5 , ( " lookup_rids: %s:%d \n " , ( * names ) [ i ] ,
( * attrs ) [ i ] ) ) ;
have_mapped = True ;
} else {
have_unmapped = True ;
}
}
done :
result = NT_STATUS_NONE_MAPPED ;
if ( have_mapped )
result = have_unmapped ? STATUS_SOME_UNMAPPED : NT_STATUS_OK ;
return result ;
}
2005-04-10 19:26:37 +04:00
static struct pdb_search * pdb_search_init ( enum pdb_search_type type )
{
TALLOC_CTX * mem_ctx ;
struct pdb_search * result ;
mem_ctx = talloc_init ( " pdb_search " ) ;
if ( mem_ctx = = NULL ) {
DEBUG ( 0 , ( " talloc_init failed \n " ) ) ;
return NULL ;
}
result = TALLOC_P ( mem_ctx , struct pdb_search ) ;
if ( result = = NULL ) {
DEBUG ( 0 , ( " talloc failed \n " ) ) ;
return NULL ;
}
result - > mem_ctx = mem_ctx ;
result - > type = type ;
result - > cache = NULL ;
2005-04-15 17:41:49 +04:00
result - > num_entries = 0 ;
2005-04-10 19:26:37 +04:00
result - > cache_size = 0 ;
result - > search_ended = False ;
2005-04-18 20:07:49 +04:00
/* Segfault appropriately if not initialized */
result - > next_entry = NULL ;
result - > search_end = NULL ;
2005-04-10 19:26:37 +04:00
return result ;
}
static void fill_displayentry ( TALLOC_CTX * mem_ctx , uint32 rid ,
uint16 acct_flags ,
const char * account_name ,
const char * fullname ,
const char * description ,
struct samr_displayentry * entry )
{
entry - > rid = rid ;
entry - > acct_flags = acct_flags ;
if ( account_name ! = NULL )
entry - > account_name = talloc_strdup ( mem_ctx , account_name ) ;
2005-04-15 17:41:49 +04:00
else
entry - > account_name = " " ;
2005-04-10 19:26:37 +04:00
if ( fullname ! = NULL )
entry - > fullname = talloc_strdup ( mem_ctx , fullname ) ;
2005-04-15 17:41:49 +04:00
else
entry - > fullname = " " ;
2005-04-10 19:26:37 +04:00
if ( description ! = NULL )
entry - > description = talloc_strdup ( mem_ctx , description ) ;
2005-04-15 17:41:49 +04:00
else
entry - > description = " " ;
2005-04-10 19:26:37 +04:00
}
static BOOL user_search_in_progress = False ;
struct user_search {
uint16 acct_flags ;
} ;
2005-04-18 20:07:49 +04:00
static BOOL next_entry_users ( struct pdb_search * s ,
struct samr_displayentry * entry )
2005-04-10 19:26:37 +04:00
{
2005-06-25 00:25:18 +04:00
struct user_search * state = s - > private_data ;
2005-04-10 19:26:37 +04:00
SAM_ACCOUNT * user = NULL ;
NTSTATUS status ;
next :
status = pdb_init_sam ( & user ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 0 , ( " Could not pdb_init_sam \n " ) ) ;
return False ;
}
if ( ! pdb_getsampwent ( user ) ) {
pdb_free_sam ( & user ) ;
return False ;
}
if ( ( state - > acct_flags ! = 0 ) & &
( ( pdb_get_acct_ctrl ( user ) & state - > acct_flags ) = = 0 ) ) {
pdb_free_sam ( & user ) ;
goto next ;
}
2005-04-15 17:41:49 +04:00
fill_displayentry ( s - > mem_ctx , pdb_get_user_rid ( user ) ,
2005-04-10 19:26:37 +04:00
pdb_get_acct_ctrl ( user ) , pdb_get_username ( user ) ,
pdb_get_fullname ( user ) , pdb_get_acct_desc ( user ) ,
entry ) ;
pdb_free_sam ( & user ) ;
return True ;
}
2005-04-18 20:07:49 +04:00
static void search_end_users ( struct pdb_search * search )
2005-04-10 19:26:37 +04:00
{
pdb_endsampwent ( ) ;
user_search_in_progress = False ;
}
2005-04-18 20:07:49 +04:00
static BOOL pdb_default_search_users ( struct pdb_methods * methods ,
struct pdb_search * search ,
uint16 acct_flags )
2005-04-10 19:26:37 +04:00
{
2005-04-18 20:07:49 +04:00
struct user_search * state ;
2005-04-10 19:26:37 +04:00
2005-04-18 20:07:49 +04:00
if ( user_search_in_progress ) {
DEBUG ( 1 , ( " user search in progress \n " ) ) ;
2005-04-15 17:41:49 +04:00
return False ;
2005-04-10 19:26:37 +04:00
}
2005-04-18 20:07:49 +04:00
if ( ! pdb_setsampwent ( False , acct_flags ) ) {
DEBUG ( 5 , ( " Could not start search \n " ) ) ;
2005-04-15 17:41:49 +04:00
return False ;
2005-04-10 19:26:37 +04:00
}
2005-04-18 20:07:49 +04:00
user_search_in_progress = True ;
state = TALLOC_P ( search - > mem_ctx , struct user_search ) ;
if ( state = = NULL ) {
DEBUG ( 0 , ( " talloc failed \n " ) ) ;
return False ;
}
state - > acct_flags = acct_flags ;
2005-06-25 00:25:18 +04:00
search - > private_data = state ;
2005-04-18 20:07:49 +04:00
search - > next_entry = next_entry_users ;
search - > search_end = search_end_users ;
2005-04-15 17:41:49 +04:00
return True ;
2005-04-10 19:26:37 +04:00
}
2005-04-18 20:07:49 +04:00
struct group_search {
GROUP_MAP * groups ;
2005-10-18 07:24:00 +04:00
size_t num_groups , current_group ;
2005-04-18 20:07:49 +04:00
} ;
static BOOL next_entry_groups ( struct pdb_search * s ,
struct samr_displayentry * entry )
2005-04-10 19:26:37 +04:00
{
2005-06-25 00:25:18 +04:00
struct group_search * state = s - > private_data ;
2005-04-10 19:26:37 +04:00
uint32 rid ;
GROUP_MAP * map = & state - > groups [ state - > current_group ] ;
if ( state - > current_group = = state - > num_groups )
return False ;
sid_peek_rid ( & map - > sid , & rid ) ;
2005-04-15 17:41:49 +04:00
fill_displayentry ( s - > mem_ctx , rid , 0 , map - > nt_name , NULL , map - > comment ,
2005-04-10 19:26:37 +04:00
entry ) ;
state - > current_group + = 1 ;
return True ;
}
2005-04-18 20:07:49 +04:00
static void search_end_groups ( struct pdb_search * search )
2005-04-10 19:26:37 +04:00
{
2005-06-25 00:25:18 +04:00
struct group_search * state = search - > private_data ;
2005-04-10 19:26:37 +04:00
SAFE_FREE ( state - > groups ) ;
}
2005-04-18 20:07:49 +04:00
static BOOL pdb_search_grouptype ( struct pdb_search * search ,
enum SID_NAME_USE type )
2005-04-10 19:26:37 +04:00
{
2005-04-18 20:07:49 +04:00
struct group_search * state ;
2005-04-10 19:26:37 +04:00
2005-04-18 20:07:49 +04:00
state = TALLOC_P ( search - > mem_ctx , struct group_search ) ;
2005-04-10 19:26:37 +04:00
if ( state = = NULL ) {
DEBUG ( 0 , ( " talloc failed \n " ) ) ;
2005-04-15 17:41:49 +04:00
return False ;
2005-04-10 19:26:37 +04:00
}
2005-04-18 20:07:49 +04:00
if ( ! pdb_enum_group_mapping ( type , & state - > groups , & state - > num_groups ,
True ) ) {
DEBUG ( 0 , ( " Could not enum groups \n " ) ) ;
2005-04-15 17:41:49 +04:00
return False ;
2005-04-10 19:26:37 +04:00
}
2005-04-18 20:07:49 +04:00
state - > current_group = 0 ;
2005-06-25 00:25:18 +04:00
search - > private_data = state ;
2005-04-18 20:07:49 +04:00
search - > next_entry = next_entry_groups ;
search - > search_end = search_end_groups ;
2005-04-15 17:41:49 +04:00
return True ;
2005-04-10 19:26:37 +04:00
}
2005-04-18 20:07:49 +04:00
static BOOL pdb_default_search_groups ( struct pdb_methods * methods ,
struct pdb_search * search )
2005-04-15 17:41:49 +04:00
{
2005-04-18 20:07:49 +04:00
return pdb_search_grouptype ( search , SID_NAME_DOM_GRP ) ;
2005-04-15 17:41:49 +04:00
}
2005-04-18 20:07:49 +04:00
static BOOL pdb_default_search_aliases ( struct pdb_methods * methods ,
struct pdb_search * search ,
const DOM_SID * sid )
2005-04-10 19:26:37 +04:00
{
2005-04-18 20:07:49 +04:00
if ( sid_equal ( sid , get_global_sam_sid ( ) ) )
return pdb_search_grouptype ( search , SID_NAME_ALIAS ) ;
2005-04-15 17:41:49 +04:00
2005-04-18 20:07:49 +04:00
if ( sid_equal ( sid , & global_sid_Builtin ) )
return pdb_search_grouptype ( search , SID_NAME_WKN_GRP ) ;
2005-04-15 17:41:49 +04:00
2005-04-18 20:07:49 +04:00
DEBUG ( 3 , ( " unknown domain sid: %s \n " , sid_string_static ( sid ) ) ) ;
return False ;
2005-04-15 17:41:49 +04:00
}
2005-04-10 19:26:37 +04:00
static struct samr_displayentry * pdb_search_getentry ( struct pdb_search * search ,
uint32 idx )
{
2005-04-15 17:41:49 +04:00
if ( idx < search - > num_entries )
2005-04-10 19:26:37 +04:00
return & search - > cache [ idx ] ;
if ( search - > search_ended )
return NULL ;
2005-04-15 17:41:49 +04:00
while ( idx > = search - > num_entries ) {
2005-04-10 19:26:37 +04:00
struct samr_displayentry entry ;
2005-04-18 20:07:49 +04:00
if ( ! search - > next_entry ( search , & entry ) ) {
search - > search_end ( search ) ;
2005-04-10 19:26:37 +04:00
search - > search_ended = True ;
break ;
}
2005-04-15 17:41:49 +04:00
ADD_TO_LARGE_ARRAY ( search - > mem_ctx , struct samr_displayentry ,
entry , & search - > cache , & search - > num_entries ,
& search - > cache_size ) ;
}
return ( search - > num_entries > idx ) ? & search - > cache [ idx ] : NULL ;
}
struct pdb_search * pdb_search_users ( uint16 acct_flags )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
struct pdb_search * result ;
if ( pdb_context = = NULL ) return NULL ;
result = pdb_search_init ( PDB_USER_SEARCH ) ;
if ( result = = NULL ) return NULL ;
if ( ! pdb_context - > pdb_search_users ( pdb_context , result , acct_flags ) ) {
talloc_destroy ( result - > mem_ctx ) ;
return NULL ;
}
return result ;
}
struct pdb_search * pdb_search_groups ( void )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
struct pdb_search * result ;
if ( pdb_context = = NULL ) return NULL ;
result = pdb_search_init ( PDB_GROUP_SEARCH ) ;
if ( result = = NULL ) return NULL ;
if ( ! pdb_context - > pdb_search_groups ( pdb_context , result ) ) {
talloc_destroy ( result - > mem_ctx ) ;
return NULL ;
2005-04-10 19:26:37 +04:00
}
2005-04-15 17:41:49 +04:00
return result ;
}
struct pdb_search * pdb_search_aliases ( const DOM_SID * sid )
{
struct pdb_context * pdb_context = pdb_get_static_context ( False ) ;
struct pdb_search * result ;
2005-04-10 19:26:37 +04:00
2005-04-15 17:41:49 +04:00
if ( pdb_context = = NULL ) return NULL ;
result = pdb_search_init ( PDB_ALIAS_SEARCH ) ;
if ( result = = NULL ) return NULL ;
if ( ! pdb_context - > pdb_search_aliases ( pdb_context , result , sid ) ) {
talloc_destroy ( result - > mem_ctx ) ;
return NULL ;
}
return result ;
2005-04-10 19:26:37 +04:00
}
uint32 pdb_search_entries ( struct pdb_search * search ,
uint32 start_idx , uint32 max_entries ,
struct samr_displayentry * * result )
{
struct samr_displayentry * end_entry ;
uint32 end_idx = start_idx + max_entries - 1 ;
/* The first entry needs to be searched after the last. Otherwise the
* first entry might have moved due to a realloc during the search for
* the last entry . */
end_entry = pdb_search_getentry ( search , end_idx ) ;
* result = pdb_search_getentry ( search , start_idx ) ;
if ( end_entry ! = NULL )
return max_entries ;
2005-04-15 17:41:49 +04:00
if ( start_idx > = search - > num_entries )
2005-04-10 19:26:37 +04:00
return 0 ;
2005-04-15 17:41:49 +04:00
return search - > num_entries - start_idx ;
2005-04-10 19:26:37 +04:00
}
void pdb_search_destroy ( struct pdb_search * search )
{
if ( search = = NULL )
return ;
if ( ! search - > search_ended )
2005-04-18 20:07:49 +04:00
search - > search_end ( search ) ;
2005-04-10 19:26:37 +04:00
talloc_destroy ( search - > mem_ctx ) ;
}
2005-04-15 17:41:49 +04:00
NTSTATUS make_pdb_methods ( TALLOC_CTX * mem_ctx , PDB_METHODS * * methods )
{
* methods = TALLOC_P ( mem_ctx , struct pdb_methods ) ;
if ( ! * methods ) {
return NT_STATUS_NO_MEMORY ;
}
ZERO_STRUCTP ( * methods ) ;
( * methods ) - > setsampwent = pdb_default_setsampwent ;
( * methods ) - > endsampwent = pdb_default_endsampwent ;
( * methods ) - > getsampwent = pdb_default_getsampwent ;
( * methods ) - > getsampwnam = pdb_default_getsampwnam ;
( * methods ) - > getsampwsid = pdb_default_getsampwsid ;
( * methods ) - > add_sam_account = pdb_default_add_sam_account ;
( * methods ) - > update_sam_account = pdb_default_update_sam_account ;
( * methods ) - > delete_sam_account = pdb_default_delete_sam_account ;
2005-10-12 00:14:04 +04:00
( * methods ) - > rename_sam_account = pdb_default_rename_sam_account ;
2005-04-15 17:41:49 +04:00
( * methods ) - > update_login_attempts = pdb_default_update_login_attempts ;
( * methods ) - > getgrsid = pdb_default_getgrsid ;
( * methods ) - > getgrgid = pdb_default_getgrgid ;
( * methods ) - > getgrnam = pdb_default_getgrnam ;
( * methods ) - > add_group_mapping_entry = pdb_default_add_group_mapping_entry ;
( * methods ) - > update_group_mapping_entry = pdb_default_update_group_mapping_entry ;
( * methods ) - > delete_group_mapping_entry = pdb_default_delete_group_mapping_entry ;
( * methods ) - > enum_group_mapping = pdb_default_enum_group_mapping ;
( * methods ) - > enum_group_members = pdb_default_enum_group_members ;
( * methods ) - > enum_group_memberships = pdb_default_enum_group_memberships ;
( * methods ) - > find_alias = pdb_default_find_alias ;
( * methods ) - > create_alias = pdb_default_create_alias ;
( * methods ) - > delete_alias = pdb_default_delete_alias ;
( * methods ) - > get_aliasinfo = pdb_default_get_aliasinfo ;
( * methods ) - > set_aliasinfo = pdb_default_set_aliasinfo ;
( * methods ) - > add_aliasmem = pdb_default_add_aliasmem ;
( * methods ) - > del_aliasmem = pdb_default_del_aliasmem ;
( * methods ) - > enum_aliasmem = pdb_default_enum_aliasmem ;
( * methods ) - > enum_alias_memberships = pdb_default_alias_memberships ;
( * methods ) - > lookup_rids = pdb_default_lookup_rids ;
2005-09-30 21:13:37 +04:00
( * methods ) - > get_account_policy = pdb_default_get_account_policy ;
( * methods ) - > set_account_policy = pdb_default_set_account_policy ;
( * methods ) - > get_seq_num = pdb_default_get_seq_num ;
2005-04-15 17:41:49 +04:00
( * methods ) - > search_users = pdb_default_search_users ;
( * methods ) - > search_groups = pdb_default_search_groups ;
( * methods ) - > search_aliases = pdb_default_search_aliases ;
return NT_STATUS_OK ;
}