summaryrefslogtreecommitdiff
path: root/source3
AgeCommit message (Collapse)AuthorFilesLines
2010-09-28s3-waf: add AUTH_SCRIPT module to AUTH subsystem (which is build as sharedGünther Deschner1-0/+7
module by default). Guenther
2010-09-28s3-waf: add vfs_linux_xfs_sgid to the list of default shared modules.Günther Deschner1-1/+1
Guenther
2010-09-28s3: Attempt to fix bug 7518Volker Lendecke1-6/+6
If select returns -1, we can't rely on the fd sets. The current code might loop endlessly because when putting an invalid fd (the closed socket?) on the read set, a select implementation might choose not to touch it but directly return with EINVAL. Thus run_events will see the socket readable, which leads to a "return true", and thus a NT_STATUS_RETRY -> same game again. We should never get into this situation, but to me the logfiles given in bug 7518 do not reveal enough information to understand how this can happen.
2010-09-28s3: Increase the debuglevel for connection termination msgsVolker Lendecke1-2/+2
2010-09-28s3-waf: fix dependencies in most of our module subsystems.Günther Deschner4-23/+3
Guenther
2010-09-28s3-waf: add pam_smbpass.Günther Deschner3-6/+18
Guenther
2010-09-28s3-auth_util: make sure the system server info actually contains S-1-5-18.Günther Deschner1-0/+9
Without this, all security descriptor checks for the winreg spoolss backend fail and make our spoolss system in its current shape basically unusable. Andreas, please check. Guenther
2010-09-28s3-printing: remove unused old structs.Günther Deschner1-60/+0
Guenther
2010-09-28s3: Lift smbd_messaging_context() from open_sockets_smbd()Volker Lendecke1-16/+14
2010-09-28s3: Remove two calls to procid_self()Volker Lendecke1-2/+4
2010-09-28s3: Remove talloc_autofree_context() from myhostname()Volker Lendecke1-3/+1
No destructor needed, so we can as well use the NULL context
2010-09-28s3: Remove some remaining files.c globals to sconnVolker Lendecke3-53/+49
2010-09-28s3: Remove talloc_autofree_context() from files.cVolker Lendecke3-7/+10
2010-09-28s3: Lift smbd_server_conn from file_find_fdVolker Lendecke4-7/+9
2010-09-28s3: Remove smbd_server_conn from file_fspVolker Lendecke1-1/+1
2010-09-28s3: Slightly simplify file_fnumVolker Lendecke1-2/+15
req==NULL should never happen, see the comment
2010-09-28s3: Remove smbd_server_conn from file_sync_allVolker Lendecke1-1/+1
2010-09-28s3: Remove smbd_server_conn from file_find_subpathVolker Lendecke1-1/+1
2010-09-28s3: Lift smbd_server_conn from file_find_di_firstVolker Lendecke6-10/+15
2010-09-28s3: Lift smbd_server_conn from file_find_difVolker Lendecke5-7/+9
2010-09-28s3: Remove smbd_server_conn from files_forallVolker Lendecke4-9/+12
2010-09-28s3: Remove smbd_server_conn from file_close_userVolker Lendecke3-4/+4
2010-09-28s3: Remove smbd_server_conn from file_close_pidVolker Lendecke3-4/+6
2010-09-28s3: Remove smbd_server_conn from file_close_connVolker Lendecke1-1/+1
2010-09-28s3: Remove smbd_server_conn from file_new and file_freeVolker Lendecke1-2/+2
2010-09-28s3: Lift smbd_server_conn from file_fnumVolker Lendecke1-4/+5
2010-09-28s3: Move "Files" to smbd_server_connectionVolker Lendecke3-17/+16
2010-09-28s3: Remove "server_fd" global variableVolker Lendecke3-9/+4
2010-09-28s3: Remove talloc_autofree_context() from receive_unexpected()Volker Lendecke1-2/+2
This is freed in this routine a few lines down
2010-09-27Add torture test BAD-NBT-SESSION as regression fix for bug 7698 - Assert ↵Jeremy Allison1-0/+130
causes smbd to panic on invalid NetBIOS session request. Jeremy.
2010-09-27Small tweak to bugfix for 7698 - Assert causes smbd to panic on invalid ↵Jeremy Allison1-3/+3
NetBIOS session request. Don't just fail to reply on a bad NBT name, just don't do the internal action. Jeremy.
2010-09-27Change to using TDB_INCOMPATIBLE_HASH (the jenkins hash) on allJeremy Allison18-28/+33
TDB_CLEAR_IF_FIRST tdb's. For tdb's like gencache where we open without CLEAR_IF_FIRST and then with CLEAR_IF_FIRST if corrupt this is still safe to use as if opening an existing tdb the new hash will be ignored - it's only used on creating a new tdb not opening an old one. Jeremy.
2010-09-28s3-spoolss: Fix _spoolss_EnumPrintProcDataTypes error handlingGünther Deschner1-0/+5
2010-09-28s3-spoolss: Fix _spoolss_EnumPrintProcessors error handlingGünther Deschner1-0/+4
2010-09-28s3-waf: add NDR_PERFCOUNT subsystem.Günther Deschner2-3/+7
Guenther
2010-09-27s3: Make file_fnum staticVolker Lendecke2-2/+1
2010-09-27s3: Remove some unused codeVolker Lendecke2-53/+0
2010-09-27s3: Fix some commentsVolker Lendecke1-2/+2
2010-09-27s3:registry: proposed aix build fix for reg_parse_internalGregor Beck1-1/+1
Signed-off-by: Michael Adam <obnox@samba.org>
2010-09-27s3-waf: fix dependencies to NDR_XATTR.Günther Deschner2-9/+4
Guenther
2010-09-27s3-waf: link PReg parser only in registry client side extension.Günther Deschner2-4/+1
Guenther
2010-09-27s3-waf: NDR_SRVSVC is defined now from the main librpc wscript_build.Günther Deschner1-4/+0
Guenther
2010-09-27s3-waf: move SERVICES into a subsystem.Günther Deschner1-5/+13
Guenther
2010-09-27s3-waf: add PRINTING subsystems.Günther Deschner1-12/+21
Guenther
2010-09-27s3-waf: add two more REGF based subsystems.Günther Deschner1-9/+14
Guenther
2010-09-27s3-waf: rework static and shared list handling a little.Günther Deschner1-17/+20
Guenther
2010-09-27s3-waf: add missing IDMAP modules.Günther Deschner2-1/+18
Guenther
2010-09-27s3-waf: rework CLDAP and LIBCLI_LDAP subsystems.Günther Deschner2-9/+18
Guenther
2010-09-27s3-waf: move gpext subsystem to libgpo/gpext/wscript_build.Günther Deschner2-35/+36
Guenther
2010-09-27s3-waf: move perfcount subsystem to modules/wscript_build.Günther Deschner2-23/+23
Guenther