Stefan Metzmacher
a68eb378a5
s4:librpc/rpc: the python bindings should use !NT_STATUS_IS_OK instead of NT_STATUS_IS_ERR
...
Everything but NT_STATUS_OK is an error here.
metze
2010-04-13 16:01:40 +02:00
Stefan Metzmacher
59b1078ec5
s4:librpc/rpc: make PyErr_SetDCERPCStatus() static
...
metze
2010-04-13 16:01:40 +02:00
Matthias Dieter Wallnöfer
84c901a619
s4:"samdb_server_site_name" uses - proof for out of memory
2010-04-13 15:45:29 +02:00
Matthias Dieter Wallnöfer
34ff1c6944
s4:samdb_server_site_name - fix indentation
2010-04-13 15:40:43 +02:00
Matthias Dieter Wallnöfer
1e08449136
s4:fill_netlogon_samlogon_reponse - fix a typo
2010-04-13 15:29:12 +02:00
Matthias Dieter Wallnöfer
7d5a8c3506
s4:torture/netlogon - enhance test for "dcesrv_netr_DsRGetDCNameEx2"
...
Test for right domainname handling.
2010-04-13 15:26:55 +02:00
Matthias Dieter Wallnöfer
aa02f44255
s4:dcesrv_netr_DsRGetDCNameEx2 - provide a much better implementation
...
On the base of the "fill_netlogon_samlogon_response" call.
This removes duplicated code.
2010-04-13 15:26:54 +02:00
Matthias Dieter Wallnöfer
4d7d6ee820
s4:fill_netlogon_samlogon_response - some rework of the detection code
...
To make it compatible by the use of the "dcesrv_netr_DsRGetDCName*" calls.
Some result checks were redundant so I removed them. In other cases I added
debug outputs. Sometimes the debug messages were misleading.
2010-04-13 15:26:54 +02:00
Andrew Tridgell
3909088e13
s4: prevent the autoconf build from removing source4/librpc/gen_ndr/README
2010-04-13 23:03:27 +10:00
Andrew Tridgell
c10d267a76
s4-waf: don't try to use the system lib for the library build
...
when building library FOO, don't try to find the system library FOO
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-04-13 23:03:27 +10:00
Andrew Tridgell
483d059c8e
tevent-waf: added man page and pkgconfig file
...
this allows libtevent to build under rpmbuild
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-04-13 23:03:27 +10:00
Volker Lendecke
be813ff2d4
libwbclient: Re-Fix a bug that was fixed with e5741e27c4c
...
> r21878: Fix a bug with smbd serving a windows terminal server: If winbind
> decides smbd to be idle it might happen that smbd needs to do a winbind
> operation (for example sid2name) as non-root. This then fails to get the
> privileged pipe. When later on on the same connection another authentication
> request comes in, we try to do the CRAP auth via the non-privileged pipe.
>
> This adds a winbindd_priv_request_response() request that kills the existing
> winbind pipe connection if it's not privileged.
The fix for this was lost during the conversion to libwbclient.
Thanks to Ira Cooper <samba@ira.wakeful.net> for pointing this out!
Volker
2010-04-13 13:30:53 +02:00
Volker Lendecke
fcab3d64f4
libwbclient: Remove a pointless variable
2010-04-13 13:28:39 +02:00
Stefan Metzmacher
974025944e
buildtools/wafsamba: make sure CHECK_FUNC() and CHECK_VARIABLE() work with -O3 in the CFLAGS
...
'CFLAGS="-O3" waf configure' was not detecting dlopen() needs -ldl.
metze
2010-04-13 12:59:07 +02:00
Andrew Tridgell
367ba43b63
tdb-waf: added build of manpages and config options for RPM build
...
Building a RPM from the fedora spec file now works with minimal changes
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-04-13 20:15:41 +10:00
Andrew Tridgell
42505df161
talloc-waf: the talloc1-compat lib depends on talloc
...
It is a library linked to another library, not a 2nd copy of talloc.c
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-04-13 20:15:41 +10:00
Andrew Tridgell
58abd9ac81
build: for unbundled libraries install devel link too
...
We need a symlink libFOO.so -> libFOO.so.x.y as a
development symlink
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-04-13 20:15:41 +10:00
Stefan Metzmacher
16d4d0346d
testprogs/blackbox/test_kinit: reorder arguments to "net time" to fix make test
...
metze
2010-04-13 10:09:18 +02:00
Stefan Metzmacher
4cff89a585
s4:tortore/rpc/spoolss: some compilers don't like .foo.bar = 5
...
metze
2010-04-13 09:55:56 +02:00
Andrew Tridgell
ab9e5047d7
talloc-waf: added the manpage generation and talloc1-compat generation
...
this allows the RPM spec file to be used with only a tiny mod (using
autogen-waf.sh instead of autogen.sh and using ln -sf for the library
links instead of ln -s)
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-04-13 17:34:44 +10:00
Andrew Tridgell
64f860e96a
build: added autoconf compatible configure options
...
This adds --build, --host, --program-prefix and
--disable-dependency-tracking. All we do with them is check them for sanity
and throw an error if (for example) the user tries a cross-compile using
these options
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2010-04-13 17:34:44 +10:00
Matthias Dieter Wallnöfer
6661ecbe94
s4:CLDAP - "fill_netlogon_samlogon_reponse" - check for out of memory
2010-04-13 09:32:35 +02:00
Matthias Dieter Wallnöfer
a894d6cc37
s4:acl/descriptor LDB module - distinguish between root and default basedn
...
The first is the forest base DN, the second the domain base DN. At the moment
we assume that they are both the same but it hasn't to be so.
Nadia, I would invite you to fix the outstanding parts regarding this (I added
comments).
2010-04-13 09:32:34 +02:00
Matthias Dieter Wallnöfer
0dffa9caec
s4:use "samdb_forest_name" for the forest DNS domainname lookup
2010-04-13 09:32:33 +02:00
Matthias Dieter Wallnöfer
719a46913b
s4:dsdb/common/util.c - add a call which determines centrally the forest DNS domainname
2010-04-13 09:32:33 +02:00
Volker Lendecke
5fc2801c09
s3: Cache the username map in gencache
...
This is for uses with a heavy-weight username map script
2010-04-13 09:30:06 +02:00
Matthias Dieter Wallnöfer
c116d80053
s4:remove "samdb_root_dn", "samdb_base_dn", "samdb_config_dn" and "samdb_schema_dn"
...
They aren't needed anymore.
2010-04-13 08:57:07 +02:00
Matthias Dieter Wallnöfer
ad9e407357
Revert "s4:prefer "samdb_*_dn" basedn calls over the "ldb_get_*_dn" functions"
...
We should use the "ldb_get_*_basedn" calls since they are available in the LDB
library.
2010-04-13 08:55:15 +02:00
Matthias Dieter Wallnöfer
8e4c34880a
s4:objectclass LDB module - remove a unneeded newline
2010-04-13 08:24:09 +02:00
Jeremy Allison
7984243768
Move to using 64-bit mid values in our internal open file database.
...
This will allow us to share logic much easier between SMB1 and SMB2
servers.
Jeremy
2010-04-12 21:40:28 -07:00
Andrew Tridgell
8a2169d674
build: cope with spaces in options passed to ./configure
2010-04-13 13:45:01 +10:00
Andrew Tridgell
a7d762bd29
build: allow cross-builds to use shared libraries
2010-04-13 12:41:34 +10:00
Andrew Tridgell
ab73692bd3
s4-tevent: up tevent version number
...
tevent now has tevent_re_initialise() which is needed for the s4 build
2010-04-13 11:45:38 +10:00
Andrew Tridgell
0ca484f457
build: check the type of implied dependencies
...
an implied dependency needs to be a library or module
2010-04-13 11:41:20 +10:00
Andrew Tridgell
b7ffc6e5b2
build: fixed a typo that prevented --bundled-libraries from working correctly
...
Jelmer noticed that --minimum-library-version=talloc:2.0.1 --bundled-libraries=!tevent
didn't do the right thing.
2010-04-13 11:27:34 +10:00
Andrew Tridgell
9c6781277a
build: cope with existing binaries in bin/ left over from the old build
2010-04-13 09:36:03 +10:00
Volker Lendecke
b1a27e81d7
s3: Apply some const
2010-04-12 21:42:54 +02:00
Matthias Dieter Wallnöfer
1a27343366
s3/s4:netlogon IDL - fix up "struct netr_SamInfo6" regarding the "forest" attribute
...
According to MS-NRPC 2.2.1.4.13 this should be the DNS domainname, not the
forest one.
2010-04-12 18:49:01 +02:00
Matthias Dieter Wallnöfer
1bd4735d87
s4:auth/auth_sam_reply.c - fix counter types
2010-04-12 18:49:01 +02:00
Matthias Dieter Wallnöfer
98ce053efd
s4:prefer "samdb_*_dn" basedn calls over the "ldb_get_*_dn" functions
...
Purely cosmetic change.
2010-04-12 18:49:01 +02:00
Matthias Dieter Wallnöfer
978a2d26b4
s4:torture/ldap/ldap_sort.c - There should be used the "base_dn" not the "root_dn" for the sort test
...
The (forest) "root_dn" hasn't always to be the same as the (domain) "base_dn"!
2010-04-12 18:49:00 +02:00
Jelmer Vernooij
9db207da07
selftest: Cope with strict.
2010-04-12 16:35:18 +02:00
Stefan Metzmacher
9ef235ed0a
s4:tortore/rpc/spoolss.c: fix declaration after code warning
...
metze
2010-04-12 16:18:11 +02:00
Andrew Tridgell
c168e5ce50
s4-ldb: enable waf build of ldb without ldap backend
...
this is useful for cross-compilation testing, where getting all the
ldap deps installed can be hard
2010-04-12 23:13:30 +10:00
Andrew Tridgell
d12605c679
build: added cross-compilation configure options
...
this enables use of a cross-compilation emulator, so configure tests
run on an emulator of the target platform
2010-04-12 23:13:30 +10:00
Nadezhda Ivanova
83312a9e50
Fixed a problem with provision missing the default_dir/etc directory.
2010-04-12 16:06:06 +03:00
Volker Lendecke
d73a7e7e90
s3: Little refactoring: Factor out skip_space
2010-04-12 13:18:18 +02:00
Volker Lendecke
8c3fa16686
s3: Remove a bogus 0-check, "isspace" can not return true for \0
2010-04-12 13:18:17 +02:00
Volker Lendecke
757766d5af
s3: Cache the result of the username map script
2010-04-12 13:09:08 +02:00
Stefan Metzmacher
49d4dd530f
Remove unused pcp/ directory.
...
metze
2010-04-12 12:49:58 +02:00