summaryrefslogtreecommitdiff
path: root/source3/Makefile.in
AgeCommit message (Collapse)AuthorFilesLines
2003-03-10Makefile.in for NTLMSSP singing updateAndrew Bartlett1-1/+1
(This used to be commit 7717555438e4d74bb63d12abde3573933c15342a)
2003-03-09Change the way we sign SMB packets, to a function pointer interface.Andrew Bartlett1-1/+1
The intention is to allow for NTLMSSP and kerberos signing of packets, but for now it's just what I call 'simple' signing. (aka SMB signing per the SNIA spec) Andrew Bartlett (This used to be commit b9cf95c3dc04a45de71fb16e85c1bfbae50e6d8f)
2003-02-22Remove 'unixsam' from the default passdb backends.Andrew Bartlett1-2/+3
The intention is to remove the muliple passdb backends, but we need the 'guest' account to always be there. If the admin adds the guest account to (say) LDAP, there will only be one backend required for operation. This helps remove some nasty behaviours with adding accounts to the system for both the RPC 'create user' and the SAMSYNC code. Users 'added' with an 'add user/machine' script won't magicly appear, and machine accounts 'pre-added' to unix, but not the smbpasswd file will not cause mayhem. This commit also implements somthing tridge discussed with me, the concept of 'default' passdb operation pointers - so that each backend does not need it's own stub funcitons wrapping the default tdb privilages/group mapping code. This also removes an implicit 'sid->name' and 'name->sid' mapping from our own local SID space, to winbind usernames. When adding mapping for NIS/LDAP non-sam users in future, we need to be careful. Andrew Bartlett (This used to be commit 6f32fa234961a525760a05418a08ec48d22d7617)
2003-02-21Ignore errors on python_clean target.Tim Potter1-1/+1
(This used to be commit 3805a9c5d5e98e089e1cd9e794f7204fc354a311)
2003-02-20From aliguori@us.ibm.com:Jim McDonough1-0/+1
This patch adds the architecture for an IDMAP backend system including a new smb.conf parameter "winbind backend". Right now, the only valid value is "tdb" but I'm currently working on an LDAP backend. (This used to be commit 35e4448dcb2deb0d5d34d9e974a49f2fb31f1356)
2003-02-18Add -V option (to print out version) to utilities where possibleJelmer Vernooij1-1/+1
(pdbedit already has a -V option..) (This used to be commit 5de622968d95c1436dbd34edc8d0a9bbff68916b)
2003-02-18We don't use mkproto stuff for the python extensions anymore.Tim Potter1-29/+0
(This used to be commit 8d166ae093655a5a14a7478c7a84474b43e8ee97)
2003-02-18Patch from vorlon@debian.org to split out our -lacl dependency to only smbdAndrew Bartlett1-2/+3
and vfstest. (This used to be commit bcbc2213230e95d732a774b5aee67295fba4380b)
2003-02-17Add KRBCLIENT_OBJ to PYTHON_OBJ list.Tim Potter1-1/+2
(This used to be commit 651be759b3db98133feb6fe8c578964ec7b5cf71)
2003-02-15Use more portable @SHLIBEXT@ instead of .soJelmer Vernooij1-1/+1
(This used to be commit ba25db83f241a28200132f3dc52f7f5f93a3b00e)
2003-02-15Antti Andreimann <Antti.Andreimann@mail.ee> has done some changes to enableAndrew Bartlett1-38/+47
users w/o full administrative access on computer accounts to join a computer into AD domain. The patch and detailed changelog is available at: http://www.itcollege.ee/~aandreim/samba This is a list of changes in general: 1. When creating machine account do not fail if SD cannot be changed. setting SD is not mandatory and join will work perfectly without it. 2. Implement KPASSWD CHANGEPW protocol for changing trust password so machine account does not need to have reset password right for itself. 3. Command line utilities no longer interfere with user's existing kerberos ticket cache. 4. Command line utilities can do kerberos authentication even if username is specified (-U). Initial TGT will be requested in this case. I've modified the patch to share the kinit code, rather than copying it, and updated it to current CVS. The other change included in the original patch (local realms) has been left out for now. Andrew Bartlett (This used to be commit ce52f1c2ed4d3ddafe8ae6258c90b90fa434fe43)
2003-02-15Move our NTLMSSP code into easily seperated peices, not relying on the wholeAndrew Bartlett1-4/+8
of libsmb. Andrew Bartlett (This used to be commit b5ec7efa80478187124c1cfa8c7fcc4036506a37)
2003-02-14Put dynrpc modules as part of make all, when specified in configure.Jim McDonough1-4/+6
(This used to be commit b44be1c7c4b8c7a8c1d35fe8b24aeff0ff0af32b)
2003-02-12initial server side privileges implementation, using a tdb. This needs to be ↵Andrew Tridgell1-1/+1
hooked into pdb, and we need some access control on changing privileges. That's next (This used to be commit f4f1f84a6bf1d356ccc83f0ecb135bef4a39619e)
2003-02-11remove trailing 'a' from VFS_MODULES targets...fix buildJim McDonough1-1/+1
(This used to be commit fa4961b1fc9f0ab2a1c32c56c6200d86a61093c9)
2003-02-10Fix a mistake spotted by MetzeRichard Sharpe1-1/+1
(This used to be commit cf167e9249fee0ea871c0dac28e9a21aeeebd614)
2003-02-10As metze mentioned, this is the proper way to find perl...Andrew Bartlett1-1/+1
Andrew Bartlett (This used to be commit f364921864bf4c33580c432f0d328c7ffc48a7df)
2003-02-10perl might not be in /usr/bin/perl, so try and find it in the path.Andrew Bartlett1-1/+1
Perhaps this generated file should be autobuilt on samba.org for the build farm and the tarballs. Andrew Bartlett (This used to be commit b8a07da68053b3eebb4f8c9ca9e620a67c878d15)
2003-02-07Added extended audit module that logs to smbd log as well as syslog.John Terpstra1-1/+8
(This used to be commit d2fe7e38b287b87d6c76a9b73724118928941e93)
2003-02-01Makefile.in change for ldap escaping fixesAndrew Bartlett1-1/+2
(This used to be commit 9f3525967d3a55a0156544733a1e83711bf4be78)
2003-01-28patch from Paul Green to only build libsmbclient.so on platforms that ↵Gerald Carter1-2/+5
support shared libraries (This used to be commit f739a7263d9da6edc2ecba5b942253c22f7cb3f8)
2003-01-27One more fix ... Things link now if you don't use dynamic RPC stuffRichard Sharpe1-2/+2
(This used to be commit 58a7744f4abebfbf87b9050b98db25c51321defa)
2003-01-27One more try to get rid of the dependency on GNU MAKERichard Sharpe1-21/+22
(This used to be commit a96592fb69fdebc5abe97a0b46055bd1486e7b94)
2003-01-27Fix the dependency on GNU Make introduced by the DYNAMIC RPC stuff.Richard Sharpe1-42/+21
I have not tested this in a GNU MAKE environment yet. (This used to be commit 5e99472d5b68dc393a5468b8949c3ad962a239f7)
2003-01-17Enable dynamic loading of RPC modules. See docs/textdocs/RPC_PLUGGIN.txt ↵Jim McDonough1-15/+113
for instructions. (This used to be commit d51e12df78ff8fc721d693fedbd1c633f39edd49)
2003-01-16Add LIBSMB_OBJ for the new ntlm_auth functionality.Andrew Bartlett1-1/+1
Andrew Bartlett (This used to be commit 9128aa3dd2f4bf4a21adac51be1da7c6380d23a0)
2003-01-15remove torture tools on make cleanGerald Carter1-1/+1
(This used to be commit dfeab6ff24e87e3459d28aa4bbaa5187505c199c)
2003-01-15Refactor the NTLMSSP code again - this time we use function pointers toAndrew Bartlett1-1/+2
eliminate the dependency on the auth subsystem. The next step is to add the required code to 'ntlm_auth', for export to Squid etc. Andrew Bartlett (This used to be commit 9e48ab86da40e4c1cafa70c04fb9ebdcce23dfab)
2003-01-13Updates to our NTLMSSP code:Andrew Bartlett1-1/+1
This tries to extract our server-side code out of sessetup.c, and into a more general lib. I hope this is only a temporay resting place - I indend to refactor it again into an auth-subsystem independent lib, using callbacks. Move some of our our NTLMSSP #defines into a new file, and add two that I found in the COMsource docs - we seem to have a double-up, but I've verified from traces that the NTLMSSP_TARGET_TYPE_{DOMAIN,SERVER} is real. This code also copes with ASCII clients - not that we will ever see any here, but I hope to use this for HTTP, were we can get them. Win2k authenticates fine under forced ASCII, btw. Tested with Win2k, NTLMv2 and Samba's smbclient. Andrew Bartlett (This used to be commit b6641badcbb2fb3bfec9d00a6466318203ea33e1)
2003-01-06add $(LDFLAGS) to libsmbclientGerald Carter1-1/+1
(This used to be commit 0f8ba688d427febecfd94e02f1779f4a699a0df2)
2003-01-03make sure we create the PIDDIR and LOCKDIR from installdirsGerald Carter1-1/+1
(This used to be commit 63d057fc7880d2522202451288087306e8fa3806)
2003-01-02debugparse is a seperate utility, no need to include it in the main ubiqxAndrew Bartlett1-1/+1
objects. Andrew Bartlett (This used to be commit 23abf75adef2f400414dfafa1248f5f886ae27c0)
2002-12-30Add a new VFS module, that just fiddles the file permissions. Still need toAndrew Bartlett1-1/+7
make it fiddle with NT ACLs (or report no ACL, so Samba fakes it up). The idea here is that Samba reports an NT ACL to Windows clients, which use that ACL in downloaded profiles. If the user doesn't have write permissions on the directories being downloaded, then it cant put the subfolders in (yes, NT will set perms so that it can't access the dir as the user the created it) and the profile download fails. The current solution it to give the user unix write perms to the folders, but this is rather dangerous - sombody could trojen the profile. This should avoid that mess. I'll test this out properly next week, but it works in vfstest (thanks idra!). Andrew Bartlett (This used to be commit 1ad782282a3eb4f89c489a77ad8404099d41d0f9)
2002-12-17fix make proto to work with SGI smakeHerb Lewis1-4/+9
(This used to be commit 773e5af6eb61fc38f8e45ea0a2afd6922cc71fd5)
2002-12-16updates to the gumsSimo Sorce1-4/+12
introduce genparser will be used by tdbsam2 (This used to be commit 831d3d1ec751f23481f26b31d22b09f3d9c0709a)
2002-12-12merge of get_dc_name()-like code from APP_HEAD; better support password ↵Gerald Carter1-3/+3
server = DC1 * (This used to be commit 6b18ca9511ddcf1718f222af3f61491d1e5f3b60)
2002-12-10Add support to Makefile.in for editregRichard Sharpe1-1/+6
Fix a couple of duplicated macros. (This used to be commit 5273844a748230f710d860e33bdcde1c0b1e6c6f)
2002-12-08A small fix to Makefile.in from Bradley Longhurst.Richard Sharpe1-2/+2
Less Fir needed. (This used to be commit 481fa87154a15eebd5a59ac4de9912fa932a42e7)
2002-12-01Link less with smbmnt and smbumount. Also change from a pstrcpy() to aAndrew Bartlett1-4/+3
strncpy() to make it clear that we must operate on a PATH_MAX sized buffer. Andrew Bartlett (This used to be commit 49d9698ef08d66dc238b2e3469da8944b444dfa1)
2002-12-01Patch from Paul Green to detect exe extensions, needed for Stratus VOS.Andrew Bartlett1-57/+65
Andrew Bartlett (This used to be commit 3f5608c7e0175184fa599176178d391d54087b3d)
2002-11-29Fix up smbwrapper target.Tim Potter1-1/+1
(This used to be commit f5fa4801ceb56b21facccb382db09165936df319)
2002-11-28merge in some changes from metze's patches (rest follows later, afterJelmer Vernooij1-2/+2
some issues in the new module system have been resolved) (This used to be commit 5b4d03fc8549696baebc0b4417582203ad7ba88e)
2002-11-28Add PDBLIBDIR, just like VFSLIBDIRJelmer Vernooij1-3/+9
(This used to be commit 3d0735e6b03ae77af42135a7f1aebb4206ae6655)
2002-11-27merging changes from SAMBA_3_0 relating to RPM packagingGerald Carter1-5/+17
(This used to be commit 1cf0cfa1b7f00946c439b2b1a30ab3981df4a459)
2002-11-26Having waited for *way* too long, this is mimir's namecache and trusted domainAndrew Bartlett1-1/+1
cache code. This uses gencache, mimir's new caching code that stores at text-based cache of various data. Mimir has done a *lot* of work on this patch, and it is finally time to get it in CVS. Andrew Bartlett (This used to be commit 47f3bfe9564e7f3aff60cefaefd599e0abb30a31)
2002-11-26[print notify fixes from APP_HEAD]Gerald Carter1-3/+5
* fixing change notify on print server handle * adding change notify support into smbcontrol for sending comment changes, etc... All part of CR 1159/1160 (This used to be commit 256d8c27cdc6f802f3bfba44593b07014f6ae10a)
2002-11-24Try to twiddle with the makefile to avoid having a trailing \ when weAndrew Bartlett1-2/+2
don't build any extra programs. (This used to be commit 9bac0b72774fe0c05956065a34ef48c05a7acaad)
2002-11-24Add ntlm_auth, a new program to provide a stable interface to winbind'sAndrew Bartlett1-1/+9
authentication code. In particular, ntlm_auth is designed to replace the winbind authentication 'helpers' currently supplied by Squid. I have added support for the current plaintext password protocol used by Squid, and will add the real guts (NTLMSSP support) shortly. I'll merge this into 3.0 when I've got the interface more stable (error message format etc) and got the important NTLMSSP support added. Also move SWAT's URL decoding code into util_str.c, for use in both utilities. Andrew Bartlett (This used to be commit 82dbf838879e8a2d2d3f9dd5be6eda50b780b787)
2002-11-22Here's a bit of a cleanup of the {configure,Makefile}.in files. I'veTim Potter1-24/+22
now combined all the ad-hoc AC_SUBST variables into three generalised ones: EXTRA_BIN_PROGS Additional programs to install in ${prefix}/sbin EXTRA_SBIN_PROGS Additional programs to install in ${prefix}/bin EXTRA_ALL_TARGETS Additional targets to build by default SHLIB_PROGS Shared library objects (pam, winbind) to build We also build some extra stuff by default: the python extensions (if --with-python specified), smbmount related binaries (if --with-smbmount specified), and the samba torture suite. The idea behind this is to have everything that is configured built by default to detect breakage as soon as possible when people make low level changes. (This used to be commit d6dfe3ea69d4672339559389c6fb16e78a9152b0)
2002-11-15Use smb_register_passdb() - plus some small fixesJelmer Vernooij1-8/+8
(This used to be commit 2addbaff358993923a58ad3845c63168678c2c21)