Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-05-08 | s4-interfaces Rename interfaces code so not to conflict with source3/ | Andrew Bartlett | 28 | -113/+113 | |
The iface_count, iface_n_bcast, and load_interfaces functions conflicted with functions of the same name in source3, so the source4 functions were renamed. Hopefully we can actually wrap one around the other in future. Andrew Bartlett | |||||
2011-05-08 | lib/socket move interfaces code to the top level | Andrew Bartlett | 3 | -334/+6 | |
2011-05-08 | s4-lib/socket Samba4 is not IPv6 compatible | Andrew Bartlett | 1 | -0/+5 | |
Don't add IPv6 interfaces until we actually support them. I'll soon have IPv6 service at home, and then I'll make it my buisness to sort this out once and for all. Andrew Bartlett | |||||
2011-05-08 | s4-lib merge get_interfaces() from Samba3 to Samba4 | Andrew Bartlett | 3 | -100/+375 | |
2011-05-08 | s4-param Don't set variables such as the debuglevel unless global | Andrew Bartlett | 1 | -2/+18 | |
This ensures that when a second lp_ctx is created, that it does not set global variables such as the debug level, log file etc, potentially overriding the settings created by another context. In particular this matters when loading Samba4 modules into Samba3. Andrew Bartlett | |||||
2011-05-08 | Improve debug messages when creating socket directories | Andrew Bartlett | 1 | -1/+1 | |
This makes clear what the permissions error and directory name actually is Andrew Bartlett | |||||
2011-05-08 | libds: moved enum security_types to a common header | Andrew Tridgell | 2 | -2/+2 | |
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2011-05-08 | s4-auth Rename auth -> auth4 to avoid conflict with s3 auth | Andrew Bartlett | 23 | -78/+80 | |
2011-05-08 | s4-ntvfs: Rename brl_*() -> brlock_*() to avoid conflict with brlock_init in s3 | Andrew Bartlett | 7 | -24/+24 | |
2011-05-08 | s4-auth: remove unused prototype | Andrew Tridgell | 1 | -4/+1 | |
2011-05-06 | s4-smbd: fix randseed_init() usage. | Günther Deschner | 1 | -1/+1 | |
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Fri May 6 17:37:11 CEST 2011 on sn-devel-104 | |||||
2011-05-06 | libcli/smb Move cifs posix helper functions and headers in common | Andrew Bartlett | 4 | -191/+2 | |
unix_perms_to_wire() was a duplicate symbol in the top level build. Andrew Bartlett | |||||
2011-05-06 | lib/util Rename ms_fnmatch() to ms_fnmatch_protocol() to avoid dup symbol | Andrew Bartlett | 5 | -9/+9 | |
This verison of the function takes a protcol as argument to determine matching rules. Andrew Bartlett | |||||
2011-05-06 | errors: Remove unused unix_to_werror() | Andrew Bartlett | 1 | -5/+0 | |
2011-05-06 | libcli/util Move NTSTATUS table to the top level | Andrew Bartlett | 1 | -889/+2 | |
2011-05-06 | nterr: Add mem_ctx for return string from get_nt_error_c_code() | Andrew Bartlett | 2 | -26/+26 | |
It is clearer to avoid the implicit return on talloc_tos() Andrew Bartlett | |||||
2011-05-06 | libcli/util Merge ntstatus_to_dos() ntstatus_to_werror() to the top level | Andrew Bartlett | 1 | -668/+0 | |
This takes the Samba4 version, with the NT_STATUS_IS_DOS() check. This will be used in smbd/error.c shortly. Andrew Bartlett | |||||
2011-05-06 | errors: Merge source3/ werror_to_ntstatus() code to source4/ | Andrew Bartlett | 1 | -6/+16 | |
2011-05-06 | errors: Merge ntstatus -> DOS error table between Samba3 and Samba4. | Andrew Bartlett | 1 | -7/+11 | |
They are now identical Andrew Bartlett | |||||
2011-05-06 | s3-lib Remove unused dos error codes from errmap_unix | Andrew Bartlett | 1 | -5/+3 | |
This also makes unix_nt_errmap private to errmap_unix.c and errormap.c so the tables themselves cannot be duplicate symbols until merged. Andrew Bartlett | |||||
2011-05-06 | lib/util Move source3 tdb_wrap_open() into the common code. | Andrew Bartlett | 13 | -181/+10 | |
This #if _SAMBA_BUILD == 3 is very unfortunate, as it means that in the top level build, these options are not available for these databases. However, having two different tdb_wrap lists is a worse fate, so this will do for now. Andrew Bartlett | |||||
2011-05-05 | Fix many const compiler warnings. | Jeremy Allison | 1 | -1/+1 | |
2011-05-05 | s4-auth: removed the password combinations code in auth_unix | Andrew Tridgell | 1 | -39/+4 | |
this code never did anything due to a typo, and was untested. We should not be inluding a password cracker in Samba anyway. Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Thu May 5 07:00:14 CEST 2011 on sn-devel-104 | |||||
2011-05-05 | s4-samba-tool: allow specification of targetdir when joining as (RO)DC | Matthieu Patou | 1 | -4/+5 | |
Autobuild-User: Matthieu Patou <mat@samba.org> Autobuild-Date: Thu May 5 02:04:13 CEST 2011 on sn-devel-104 | |||||
2011-05-05 | Clean up some const and other compiler warnings. | Jeremy Allison | 6 | -10/+25 | |
Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu May 5 00:59:40 CEST 2011 on sn-devel-104 | |||||
2011-05-04 | sasl_secret_t ends in a char [1] size. This means the extra character is ↵ | Jeremy Allison | 1 | -2/+2 | |
implicit in the safe_strcpy. When changing to strlcpy ensure we allocate an extra char for it. This fixes a bug where secret->len+1 used with safe_strcpy could actually write into secret->len+2. | |||||
2011-05-04 | Fix simple uses of safe_strcpy -> strlcpy. Easy ones where we just remove -1. | Jeremy Allison | 3 | -5/+5 | |
2011-05-03 | s4-param Rename secrets_init() -> randseed_init() | Andrew Bartlett | 3 | -10/+10 | |
This only sets up the random number generator callback these days, so use a different database for that. (All secrets data in Samba4 is in secrets.ldb) Andrew Bartlett | |||||
2011-05-03 | s4: fix arguments to safe_strcpy() | Andrew Bartlett | 1 | -2/+2 | |
Found by the s3-derivied safe_strcpy() macro. Andrew Bartlett | |||||
2011-05-03 | s4-socket: rename allow_access() to socket_allow_access() | Andrew Tridgell | 3 | -8/+8 | |
this prevents a symbol collision with s3 Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2011-05-03 | Remove strlower_m() and strupper_m() from source4 and common code. | Andrew Bartlett | 8 | -63/+74 | |
This function is problematic because a string may expand in size when changed into upper or lower case. This will then push characters off the end of the string in the s3 implementation, or panic in the former s4 implementation. Andrew Bartlett | |||||
2011-05-03 | s4-param: use new roles.h | Andrew Tridgell | 1 | -5/+1 | |
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2011-05-03 | libcli/raw: use a different ifdef than s3 smb.h | Andrew Tridgell | 1 | -3/+3 | |
this allows both headers to be included in 1 C file Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org> | |||||
2011-05-03 | s4-messaging Rename messaging -> imessaging | Andrew Bartlett | 46 | -266/+266 | |
This avoid symbol and structure conflicts between Samba3 and Samba4, and chooses a less generic name. Andrew Bartlett | |||||
2011-05-03 | s4-libcli Remove resolve_name() as it conflicts with Samba3. | Andrew Bartlett | 8 | -23/+23 | |
This was just a wrapper around resolve_name_ex(), so just call that instead. Andrew Bartlett | |||||
2011-05-03 | s4-torture Remove unused and uncompleated test | Andrew Bartlett | 1 | -54/+0 | |
2011-05-03 | lib/util Move set_socket_options() into common code. | Andrew Bartlett | 1 | -160/+0 | |
2011-05-03 | s4-lib/socket Merge updated set_socket_options from Samba3 -> Samba4 | Andrew Bartlett | 1 | -34/+90 | |
2011-05-03 | s4-cluster Rename server_id.node -> vnn to match Samba3 | Andrew Bartlett | 4 | -8/+8 | |
2011-05-03 | s4:Remove outdated doc on Samba4 upgrade | Andrew Bartlett | 1 | -21/+0 | |
2011-05-03 | s4-cluster: Remove const from cluster_id_string() | Andrew Bartlett | 4 | -5/+5 | |
This allows the caller to talloc_free() this result. Andrew Bartlett | |||||
2011-05-03 | s4:cluster Rename .id to .pid in server_id | Andrew Bartlett | 7 | -21/+28 | |
This also changes some DEBUG messages to use cluster_id_string() rather than .id, to isolate them from this and other changes. Andrew Bartlett | |||||
2011-05-02 | s4:libcli/util/nterr: NO_S4U_PROT_SUPPORT and CROSSREALM_DELEGATION_FAILURE | Stefan Metzmacher | 1 | -0/+2 | |
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon May 2 15:02:56 CEST 2011 on sn-devel-104 | |||||
2011-04-30 | provision: reorganize attributes so that we don't attribute with DN syntax ↵ | Matthieu Patou | 3 | -6/+7 | |
that depends on non present object Autobuild-User: Matthieu Patou <mat@samba.org> Autobuild-Date: Sat Apr 30 14:51:16 CEST 2011 on sn-devel-104 | |||||
2011-04-30 | s4:torture/nbt/winsreplication: ignore incoming broadcast messages | Stefan Metzmacher | 1 | -2/+19 | |
This will hopefully fix the flakey behavior of the samba4.nbt.winsreplication.owned test. metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Sat Apr 30 12:45:01 CEST 2011 on sn-devel-104 | |||||
2011-04-30 | s4:torture/nbt/winsreplication: assert the nbt name before the type | Stefan Metzmacher | 1 | -2/+2 | |
I hope that will make it easier to find problems with the flakey samba4.nbt.winsreplication.owned test. metze | |||||
2011-04-30 | lib/util Rename conv_str_size() -> conv_str_size_error() | Andrew Bartlett | 2 | -3/+3 | |
2011-04-30 | s4:torture/nbt/winsreplication: use torture macros in order report failures | Stefan Metzmacher | 1 | -8/+104 | |
This makes sure we can ignore this failures with the "knownfail" file. metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Sat Apr 30 10:37:16 CEST 2011 on sn-devel-104 | |||||
2011-04-30 | kerberos: Only include gssapi/gssapi_krb5.h when available | Andrew Bartlett | 1 | -0/+1 | |
2011-04-29 | ldb:tdb backend - cache - remove unused "last_attribute" structure member | Matthias Dieter Wallnöfer | 2 | -8/+0 | |
Reviewed-by: abartlet Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Fri Apr 29 20:07:27 CEST 2011 on sn-devel-104 |