1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-08 05:57:51 +03:00

28449 Commits

Author SHA1 Message Date
Volker Lendecke
1a3f50559e Revert "Fix allocation of conn->vuid_cache entries"
This reverts commit 50c891d3dfb75c9f607f7ad2a578aa3ba5d91988.

There's more to this code -- sorry for the spam
(This used to be commit 6e0e0cb8dd6f57de36c041e2ba4b82feeb357ce8)
2008-05-05 15:07:01 +02:00
Volker Lendecke
58c54eb91f Revert "Second half of 50c891d3: Correctly clear the vuid cache"
This reverts commit 0aea404b0a83736ba2884cc7cf00cd797aab1f56.
(This used to be commit fa39f47f5fc2df0f1a59705e30a799518c353b45)
2008-05-05 15:06:30 +02:00
Volker Lendecke
a529b2e1c3 Second half of 50c891d3: Correctly clear the vuid cache
(This used to be commit 0aea404b0a83736ba2884cc7cf00cd797aab1f56)
2008-05-05 14:53:49 +02:00
Volker Lendecke
8dd53811d5 Fix allocation of conn->vuid_cache entries
With the old code, if more than VUID_CACHE_SIZE elements were used all new
entries ended up in slot 0. With this checkin we do cycle.

Jeremy, please revert if the old behaviour was intentional
(This used to be commit 50c891d3dfb75c9f607f7ad2a578aa3ba5d91988)
2008-05-05 14:46:03 +02:00
Volker Lendecke
768c0d6b22 Fix dfs_Enum: In form_junctions, correctly check for malloc failure
(This used to be commit 1b1614c3261e1e93a2cad1f1063e28cbbb13f434)
2008-05-05 12:45:12 +02:00
Karolin Seeger
2f2d255e1a Developer's Guide: Fix typos.
Karolin
(This used to be commit e206ffb8562c821735555c9b426d76e49986fefe)
2008-05-05 11:56:37 +02:00
Volker Lendecke
d62563342e Remove connection_struct->mem_ctx, connection_struct is its own parent
(This used to be commit 559180f7d30606d1999399d954ceedc798c669a4)
2008-05-05 11:23:13 +02:00
Volker Lendecke
2c00ff5407 Fix two uninitialized variable warnings
(This used to be commit 48fd7b3635137e2fe77c0b0413965869194421ff)
2008-05-05 11:17:19 +02:00
Jeremy Allison
b430b38220 Remove the "stat_open()" function, flag, and all associated code. It was only
being (correctly) used in the can_read/can_write checks for hide unreadable/unwritable
and this is more properly done using the functions in smbd/file_access.c.
Preparing to do NT access checks on all file access.
Jeremy.
(This used to be commit 6bfb06ad95963ae2acb67c4694a98282d3b29faa)
2008-05-02 17:22:10 -07:00
Jeremy Allison
85dc0ad7be Rename inherit_access_acl() -> inherit_access_posix_acl() to make use clear.
Jeremy.
(This used to be commit b739c7f1cdb2b19a380b06681b00dcf490d788a9)
2008-05-02 12:54:53 -07:00
Jeremy Allison
96e969c9eb Move directory_has_default_acl() to file_access.c, belongs
there as it no longer uses explicit POSIX ACL calls.
Jeremy.
(This used to be commit ac1eac9b0d07b7b3d341c06ef1a8fd8f3c05a618)
2008-05-02 10:09:00 -07:00
Jeremy Allison
6f19a1fdda Start to ensure we use the NT ACL interface, keep the POSIX
ACL interface inside the VFS modules. Will help when moving
to storing NT ACLs.
Jeremy.
(This used to be commit b08ea48f883d1b000f6364c1ff8f62bc25741244)
2008-05-01 17:01:37 -07:00
Jeremy Allison
3cfd1f2be7 Tidyup to ensure '\n' is treated identically in all
cases.
Jeremy.
(This used to be commit 818fbc9889af8c9fb6e7978e8ed2269a78f14404)
2008-05-01 08:48:52 -07:00
Jeremy Allison
e9accc2ad6 Fix bug #5434 found by Ted Percival <ted@midg3t.net>.
Introduced by me in the strlcpy cleanup. Ensure the
loaded password doesn't contain the '\n' at the end.
Jeremy.
(This used to be commit 41984743d9e89b6568119832c35ee4c0024e43a2)
2008-05-01 08:39:16 -07:00
Günther Deschner
e7142ef180 ntlmssp: replace UNKNOWN_02000000 with NTLMSSP_NEGOTIATE_VERSION.
Guenther
(This used to be commit 2c41d69bcf6f0897ef9d444a8f167aff1772d562)
2008-04-30 18:55:57 +02:00
Günther Deschner
fb623c942d pam_winbind: Fix Bug #5430 (patch from fumiyas@osstech.co.jp).
Guenther
(This used to be commit d8372f73b93d3f323310f5456fef204884c303bb)
2008-04-30 18:34:29 +02:00
Jeremy Allison
82d7429a27 Fix typo noticed by David Disseldorp <ddiss@sgi.com>. AF_INET should be AF_INET6 in this case.
Jeremy.
(This used to be commit 767740a914c7ebeb88886f520380b7fa365e315d)
2008-04-30 09:28:47 -07:00
Gerald W. Carter
c413c97ff4 Winbind: Prevent cycle in children list when reaping dead child processes.
Thanks to Glenn Curtis and Kyle Stemen @ Likewise.  Their explanation is:

    In winbindd_dual.c, there is a list of children processes that
    is maintained using macros DTLIST_ADD and DTLIST_REMOVE. In the
    case when a scheduled_async_request fails, the particular child
    was located in the list, and its attributes were cleared out
    and it was reused for a subsequent async request. The bug was that
    the new request would queue the same node into the doubly-linked
    list and would result in list->next pointing to the same node as
    list itself. This would set up an infinite loop in the processing of
    the for loop when the list of children was referenced.

    Solution was to fully remove the child node from the list, such that
    it could be inserted without risk of being inserted twice.

Note that the child is re-added to the list in fork_domain_child() again.
(This used to be commit b379b5b5d8a6daccc69aaf2be6d9a6e276e7dd78)
2008-04-30 10:09:43 -05:00
Gerald W. Carter
43c079ef26 BUG 5107: Fix handling of large DNS replies on AIX and Solaris.
On AIX, Solaris, and possibly some older glibc systems (e.g. SLES8)
truncated replies never give back a resp_len > buflen
which ends up causing DNS resolve failures on large tcp DNS replies.

Also add more debug lines about processing the DNS reply.
(This used to be commit 5ed9b92097460cd8180db806a08213e97cfb8daa)
2008-04-30 09:57:15 -05:00
Gerald W. Carter
d6aa45d29c BUG 5429: Clarify log msgs re: failure to create BUILTIN\{Administrators,Users}
Raise the debug msgs from Lvl 0 in the create_builtin_XX() functions
to prevent unnecessary panic from people reading the logs.
(This used to be commit 2983b9dc790e0f90ec1e6add131438c6bfd361b4)
2008-04-30 09:43:00 -05:00
Günther Deschner
65ad34ba09 re-run make idl.
Guenther
(This used to be commit 14327b11baa18f185e747a321e75abe581d153d2)
2008-04-30 16:04:30 +02:00
Günther Deschner
a7bd73c786 build: fix make everything.
Guenther
(This used to be commit d2cd011f4379ed2972c8e4c96f6757961fdceaee)
2008-04-30 16:04:30 +02:00
Günther Deschner
9764083d25 IDL: add nbt_cldap_netlogon_29 which includes the next_closest_site.
Guenther
(This used to be commit 909c9ae7ecbaa1bcc38d5c9ebc10fc5fb9a7bf59)
2008-04-30 16:04:30 +02:00
Günther Deschner
2b0e91caea IDL: use nbt_netlogon_command in cldap replies.
Guenther
(This used to be commit bc92507fb425ae56568c72298b9d7e964ae372d0)
2008-04-30 16:04:30 +02:00
Volker Lendecke
974643f656 Next round fixing bug 5420, build on IRIX
The IRIX make does not like lines with only whitespace. With LIBNETAPI_LIBS
evaluating to nothing this happens there.
(This used to be commit 225fbe743c34fa7658f8f2e9daf6f51ec1b6e944)
2008-04-30 12:50:26 +02:00
Volker Lendecke
5c40b5fd52 Attempt to fix the build on IRIX: Bug 5420
(This used to be commit ebca5fd7625e3ff3d76ab4e6c245ba3297ca03b4)
2008-04-30 12:50:20 +02:00
Michael Adam
f50002b491 registry: skip writes of existing keys in init_registry_data().
Michael
(This used to be commit 37dabf931727f00569725af0e34677d36bb7df99)
2008-04-30 12:42:33 +02:00
Michael Adam
9fe870affa registry: save writes in init_registry_data() if data does already exist.
This is done by first checking if all data (keys and values) exists
(using new regdb_key_exists()) and kompletely skipping all writes if it does.

Michael
(This used to be commit 7c5f1583cb43d473544f161aa9c864e1d78944e5)
2008-04-30 12:42:32 +02:00
Michael Adam
ed6a9edb1e registry: check for existence of key init_registry_key and possibly save a write.
Michael
(This used to be commit 3ab5a2f1b3cf37c380ff3e45a957e62a8017814a)
2008-04-30 12:42:32 +02:00
Michael Adam
6ec4c8631a registry: add function regdb_key_exists() to check for existence of a key.
The existence of the registry key entry (and not the values entry!) is
taken as the criterion for existence.

Michael
(This used to be commit 207a0ece45d947608df3f764e6bd9b4525d41011)
2008-04-30 12:42:32 +02:00
Michael Adam
167d54cc67 registry: use regdb_fetch_key_internal() in regdb_fetch_values().
Michael
(This used to be commit 3316541ac9f1441294405fdd98f0ffafdec8bc2f)
2008-04-30 12:42:32 +02:00
Michael Adam
6b4ed4b8f3 registry: use regdb_fetch_key_internal() in regdb_fetch_keys().
Michael
(This used to be commit 78f924ca05ecef9f586254c00908c1f12272c30c)
2008-04-30 12:42:32 +02:00
Michael Adam
5379dda0cd registry: add a function for fetching a tdb record for a given keystring
regdb_fetch_key_internal()

Michael
(This used to be commit 97bed9a23608248f1a590c99fe40564d2fbfa3cc)
2008-04-30 12:42:32 +02:00
Michael Adam
411ae73283 registry: combine talloc_strdup() and normalize_reg_path() in regdb_fetch_keys().
the talloc_strdup() call is just and extra allocation here.

Michael
(This used to be commit 217233349b2d98d2506fcca47858373150e89924)
2008-04-30 12:42:32 +02:00
Michael Adam
dba75c0831 registry: use normalize_reg_path() in regdb_fetch_keys()
instead of handcrafting normalization.

Michael
(This used to be commit 1e4d2310d077c4d18470fd76f5ff9c010aadd3f0)
2008-04-30 12:42:31 +02:00
Michael Adam
caba2d3a64 registry: use dbwrap_fetch_bystring() in regdb_fetch_values().
Michael
(This used to be commit 569f9844e9d35324cf9a3a3094cd9791918a1441)
2008-04-30 12:42:31 +02:00
Michael Adam
9d933dedf9 registry: use dbwrap_fetch_bystring() in regdb_fetch_keys().
instead of using regdb->fetch and constructing tdb data
from the registry key string by hand.

Michael
(This used to be commit 87a58140f0073dfb5b18fb43655b255aebafbd02)
2008-04-30 12:42:31 +02:00
Günther Deschner
f49474f58a build: fix some build dependencies.
Guenther
(This used to be commit 067a6931a23631dfb902fb4a180f3c44a5455d51)
2008-04-30 01:11:51 +02:00
Günther Deschner
c16a7ac6c6 Re-run make idl.
Guenther
(This used to be commit 08b5758e00597a4828044c4d4ac97be0741b0cf2)
2008-04-30 01:11:47 +02:00
Günther Deschner
ebedb09be9 IDL: use nbt_dc_sock_addr.
Guenther
(This used to be commit 5a46f34fa364dfb20d7de93164b56d08dc4fb427)
2008-04-30 01:11:46 +02:00
Günther Deschner
b144371713 IDL: move some netlogon DS flags to NBT where they actually showup first.
Guenther
(This used to be commit 163f17f84bc602f9944153854e42cf643c5c4768)
2008-04-30 00:56:31 +02:00
Günther Deschner
fe8d6a09d1 IDL: use samr_AcctFlags in nbt_ntlogon_sam_logon.
Guenther
(This used to be commit 5f5658b3dc6407ca05368f657dc3296425844434)
2008-04-30 00:35:57 +02:00
Günther Deschner
754e646bec IDL: add nbt_netlogon_version.
Guenther
(This used to be commit 5963bbea82bf0c11158bd1db00710c3157299bcc)
2008-04-30 00:34:43 +02:00
Günther Deschner
fe2c8e38d3 rpcclient: fix another srv_name_slash.
Guenther
(This used to be commit de946e6158526ec109b0c3381bab6e6d8e9cc1b2)
2008-04-29 20:22:02 +02:00
Günther Deschner
7a6f33e3d8 _netr_LogonSamLogon: fix lm session key length.
Thanks Volker for pointing this out.

Guenther
(This used to be commit 7ccca9a004c7a4794781cbd7c703c53a0481bd51)
2008-04-29 20:22:02 +02:00
Günther Deschner
ecab49a4d3 Re-run make idl.
Guenther
(This used to be commit 89284792722ab38d98e874e477c7a4046ee2aba0)
2008-04-29 20:22:02 +02:00
Günther Deschner
aede77b258 IDL: Add DFS_MANAGER_VERSION_W2K8.
Guenther
(This used to be commit 85a758c0b8398b682450b692744f7a49c7734faf)
2008-04-29 20:22:02 +02:00
Günther Deschner
1223574c7b netapi: fix returned name buffer in NetGetJoinInformation_r().
Guenther
(This used to be commit 0e8e05d556a7f84e500cca3fa858f9b4a9522a5f)
2008-04-29 20:22:01 +02:00
Günther Deschner
d0411c19dc errors: add WERR_NOT_FOUND.
Guenther
(This used to be commit b9ac03bdfa5763c713674acd966ab5d4371992a5)
2008-04-29 20:22:01 +02:00
Günther Deschner
ad73cb11a2 Merge data_blob_hex_string from Samba4.
Guenther
(This used to be commit 686d8939d90eab958d3a352fe53917ba7a17f39a)
2008-04-29 20:22:01 +02:00