summaryrefslogtreecommitdiffstats
path: root/source/param
Commit message (Collapse)AuthorAgeFilesLines
...
* Added Shirish's client side caching policy change.Jeremy Allison2002-04-101-2/+17
| | | | Jeremy.
* Fix continual scanning of smb.conf if an include file doesn't exist. FoundJeremy Allison2002-04-021-7/+7
| | | | | by Herb. Jeremy.
* Added sys_adminlog() system for info the appliance admins reallyJeremy Allison2002-03-271-0/+5
| | | | | need to know about. Different from the DEBUG system. Jeremy.
* Minor fixes:Andrew Bartlett2002-03-231-5/+4
| | | | | | | | | | | - Fix warnings in loadparm.c - Remove the unused 'passdb modules path' paramater - Make pdb_ldap use $ termination rather than the workstation trust account flag becouse some 'machine' accounts appear as normal accounts at creation time. Also covers domains etc. Andrew Bartlett
* Sync up vfs changes from 2.2.x.Jeremy Allison2002-03-191-1/+2
| | | | Jeremy.
* include/smb_macros.h: Don't round up an allocation if the size is zero.Jeremy Allison2002-03-131-0/+8
| | | | | | | | | | | | | | "One of these locks is not like the others... One of these locks is not quite the same" :-). When is a zero timeout lock not zero ? When it's being processed by Windows 2000 of course.. This code change, ugly though it is - completely fixes the foxpro/access multi-user file system database problems that people have been having. I used a *wonderful* test program donated by "Gerald Drouillard" <gerald@drouillard.ca> which allowed me to completely reproduce this problem, and to finally determine the correct fix. This also explains why Windows 2000 is *so slow* when responding to the smbtorture lock tests. I *love* it when all these things come together and finally make sense :-). Jeremy.
* Implemented default ACL patch (set inherit acls = true on a per share basis).Jeremy Allison2002-03-111-0/+4
| | | | | | Based on code donated by Olaf Fr±czyk <olaf@cbk.poznan.pl>. Further commit will change to sending via vfs interface. Jeremy.
* make default unix charset UTF8Andrew Tridgell2002-03-031-0/+3
| | | | this means that we at least support all unicode chars by default
* compile fix from vanceSimo Sorce2002-03-021-0/+2
|
* Move these inside the #ifdef to fix the compile on non-LDAPsam systems.Andrew Bartlett2002-03-021-4/+5
|
* This is now unusedAndrew Bartlett2002-03-021-1/+0
|
* This patch merges my private LDAP tree into HEAD.Andrew Bartlett2002-03-021-7/+94
| | | | | | | | | | | | | | | | | | | | | The main change here is to move ldap into the new pluggable passdb subsystem and to take the LDAP location as a 'location' paramter on the 'passdb backend' line in the smb.conf. This is an LDAP URL, parsed by OpenLDAP where supported, and by hand where it isn't. It also adds the ldap user suffix and ldap machine suffix smb.conf options, so that machines added to the LDAP dir don't get mixed in with people. Non-unix account support is also added. This means that machines don't need to be in /etc/passwd or in nss_ldap's scope. This code has stood up well under my production environment, so it relitivly well tested. I'm commiting this now becouse others have shown interest in using it, and there is no point 'hording' the code :-). Andrew Bartlett
* Added "nt status support" parameter. Fix offline synchronisation.Jeremy Allison2002-02-271-0/+4
| | | | Jeremy.
* add required flags to "nt acl support" so it will show up in SWATHerb Lewis2002-02-251-1/+1
|
* enable large readwrite by defaultAndrew Tridgell2002-02-201-1/+1
| | | | | this should improve performance with w2k clients and seems to work fine
* Added comment in lp_string() about debugging memory problems.Tim Potter2002-02-161-0/+9
|
* Removed version number from file header.Tim Potter2002-01-301-2/+1
| | | | Changed "SMB/Netbios" to "SMB/CIFS" in file header.
* that's the wins replication daemon !Jean-François Micouleau2002-01-251-0/+3
| | | | | | there are still some work to do on it but it's already functionnal. J.F.
* Initialise password server to "*" in init_globals()Tim Potter2002-01-251-0/+1
|
* merge from 2.2. ofGerald Carter2002-01-221-0/+4
| | | | | * PRINTER_ATTRIBUTE's * "default devmode" parameter
* This is another *BIG* change...Andrew Bartlett2002-01-201-1/+42
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Samba now features a pluggable passdb interface, along the same lines as the one in use in the auth subsystem. In this case, only one backend may be active at a time by the 'normal' interface, and only one backend per passdb_context is permitted outside that. This pluggable interface is designed to allow any number of passdb backends to be compiled in, with the selection at runtime. The 'passdb backend' paramater has been created (and documented!) to support this. As such, configure has been modfied to allow (for example) --with-ldap and the old smbpasswd to be selected at the same time. This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua. These two backends accept 'non unix accounts', where the user does *not* exist in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to avoid conflicts in the algroitmic mapping of RIDs, they use the values specified in the 'non unix account range' paramter - in the same way as the winbind ranges are specifed. While I was at it, I cleaned up some of the code in pdb_tdb (code copied directly from smbpasswd and not really considered properly). Most of this was to do with % macro expansion on stored data. It isn't easy to get the macros into the tdb, and the first password change will 'expand' them. tdbsam needs to use a similar system to pdb_ldap in this regard. This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I don't have the test facilities for these. I plan to incoroprate at least pdb_ldap into this scheme after consultation with Jerry. Each (converted) passdb module now no longer has any 'static' variables, and only exports 1 init function outside its .c file. The non-unix-account support in this patch has been proven! It is now possible to join a win2k machine to a Samba PDC without an account in /etc/passwd! Other changes: Minor interface adjustments: pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*. pdb_update_sam_account() no longer takes the 'override' argument that was being ignored so often (every other passdb backend). Extra checks have been added in some places. Minor code changes: smbpasswd no longer attempts to initialise the passdb at startup, this is now done on first use. pdbedit has lost some of its 'machine account' logic, as this behaviour is now controlled by the passdb subsystem directly. The samr subsystem no longer calls 'local password change', but does the pdb interactions directly. This allow the ACB_ flags specifed to be transferred direct to the backend, without interference. Doco: I've updated the doco to reflect some of the changes, and removed some paramters no longer applicable to HEAD.
* This is the 'winbind default domain' patch from Alexander BokovoyAndrew Bartlett2002-01-181-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | <a.bokovoy@sam-solutions.net>. The idea is the domain\username is rather harsh for unix systems - people don't expect to have to FTP, SSH and (in particular) e-mail with a username like that. This 'corrects' that - but is not without its own problems. As you can see from the changes to files like username.c and wb_client.c (smbd's winbind client code) a lot of assumptions are made in a lot of places about lp_winbind_seperator determining a users's status as a domain or local user. The main change I will shortly be making is to investigate and kill off winbind_initgroups() - as far as I know it was a workaround for an old bug in winbind itself (and a bug in RH 5.2) and should no longer be relevent. I am also going to move to using the 'winbind uid' and 'winbind gid' paramaters to determine a user/groups's 'local' status, rather than the presence of the seperator. As such, this functionality is recommended for servers providing unix services, but is currently less than optimal for windows clients. (TODO: remove all references to lp_winbind_seperator() and lp_winbind_use_default_domain() from smbd) Andrew Bartlett
* Separate out get_user_home_dir() from get_user_home_service_dir().Jeremy Allison2002-01-161-37/+29
| | | | Jeremy.
* Roll back PSTRING_SANCTIFY patch; just leave non-controversial typeMartin Pool2002-01-161-1/+1
| | | | and constness changes.
* Add constness to parametersMartin Pool2002-01-151-2/+2
|
* For hysterical raisins you must use string_set() to set the value of aTim Potter2002-01-091-1/+1
| | | | | string in the loadparam Globals struct. Using pstrcpy was causing every NULL string was being set to the name of the winbindd log file. (-:
* Added get_called_name() function, which replaces global_myname in printingJeremy Allison2002-01-081-0/+10
| | | | | | code (one less global, hurrah !) - to allow NetBIOS aliasing to be used with point and print. Jeremy.
* Put a name on lp_talloc poolMartin Pool2002-01-031-1/+1
|
* sync up ldap defaults with 2.2Gerald Carter2002-01-021-2/+3
|
* Add a pile of doxygen style comments to various parts of Samba. Many of theseAndrew Bartlett2001-12-301-1/+1
| | | | | | | | | probably will never actually be genearted, but I like the style in any case. Also fix a segfault in 'net rpc' when the login failed and a small memory leak on failure in the auth_info.c code. Andrew Bartlett
* Removed global debugf. Replaced with lp_set_logfile(name).Jeremy Allison2001-12-201-0/+9
| | | | | Fixed winbindd to finally stop leaving log. file droppings :-). Jeremy.
* fixed more warnings on irixAndrew Tridgell2001-12-201-3/+3
|
* fixed sscanf() of gid_t valuesAndrew Tridgell2001-12-201-4/+4
|
* update the ldap support code. it compiles.Jean-François Micouleau2001-12-131-21/+37
| | | | | | | | Ignacio you can update your howto ;-) samsync: a small patch to try chaning challenges. J.F.
* added a "use spnego" optionAndrew Tridgell2001-12-071-0/+6
| | | | | you need to set "use spnego = no" for w2k to be able to join a samba domain. Otherwise the w2k box will assume we can do kerberos as a KDC
* again an intrusive patch:Jean-François Micouleau2001-12-061-15/+9
| | | | | | | | | | | | | | | - removed the ugly as hell sam_logon_in_ssb variable, I changed a bit the definition of standard_sub_basic() to cope with that. - removed the smb.conf: 'domain admin group' and 'domain guest group' parameters ! We're not playing anymore with the user's group RIDs ! - in get_domain_user_groups(), if the user's gid is a group, put it first in the group RID list. I just have to write an HOWTO now ;-) J.F.
* removed the #ifdef USING_GROUPNAME_MAP/#endif blocksJean-François Micouleau2001-12-011-10/+0
| | | | | | | | that GROUPNAME_MAP has never been used. I'll delete the smbd/groupname.c file too J.F.
* A number of things to clean up the auth subsytem a bit...Andrew Bartlett2001-11-261-1/+27
| | | | | | | | | | | | | | | | | | | | | | | We now default encrypt passwords = yes We now check plaintext passwords (however aquired) with the 'sam' backend rather than unix, if encrypt passwords = yes. (this kills off the 'local' backed. The sam backend may be renamed in its place) The new 'samstrict' wrapper backend checks that the user's domain is one of our netbios aliases - this ensures that we don't get fallback crazies with security = domain. Similarly, the code in the 'ntdomain' and 'smbserver' backends now checks that the user was not local before contacting the DC. The default ordering has changed, we now check the local stuff first - but becouse of the changes above, we will really only ever contact one auth source. Andrew Bartlett
* updated server_role for ADSAndrew Tridgell2001-11-261-0/+1
|
* Another merge from appliance-head: in [ug]id_to_sid don't call theTim Potter2001-11-261-10/+60
| | | | | winbind function if the id is obviously going to be local. Cleanup of winbind [ug]id parameter handling.
* added 'security=ADS'Andrew Tridgell2001-11-251-0/+1
|
* added "net join" commandAndrew Tridgell2001-11-241-0/+3
| | | | this completes the first stage of the smbd ADS support
* This is another rather major change to the samba authenticaionAndrew Bartlett2001-11-241-9/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | subystem. The particular aim is to modularized the interface - so that we can have arbitrary password back-ends. This code adds one such back-end, a 'winbind' module to authenticate against the winbind_auth_crap functionality. While fully-functional this code is mainly useful as a demonstration, because we don't get back the info3 as we would for direct ntdomain authentication. This commit introduced the new 'auth methods' parameter, in the spirit of the 'auth order' discussed on the lists. It is renamed because not all the methods may be consulted, even if previous methods fail - they may not have a suitable challenge for example. Also, we have a 'local' authentication method, for old-style 'unix if plaintext, sam if encrypted' authentication and a 'guest' module to handle guest logins in a single place. While this current design is not ideal, I feel that it does provide a better infrastructure than the current design, and can be built upon. The following parameters have changed: - use rhosts = This has been replaced by the 'rhosts' authentication method, and can be specified like 'auth methods = guest rhosts' - hosts equiv = This needs both this parameter and an 'auth methods' entry to be effective. (auth methods = guest hostsequiv ....) - plaintext to smbpasswd = This is replaced by specifying 'sam' rather than 'local' in the auth methods. The security = parameter is unchanged, and now provides defaults for the 'auth methods' parameter. The available auth methods are: guest rhosts hostsequiv sam (passdb direct hash access) unix (PAM, crypt() etc) local (the combination of the above, based on encryption) smbserver (old security=server) ntdomain (old security=domain) winbind (use winbind to cache DC connections) Assistance in testing, or the production of new and interesting authentication modules is always appreciated. Andrew Bartlett
* Move all other paths into dynconfigMartin Pool2001-11-191-3/+3
|
* LIBDIR and LOCKDIR are dynamically configured too.Martin Pool2001-11-191-1/+1
|
* This change updates lp_guestaccount() to be a *global* paramater, rather thanAndrew Bartlett2001-11-091-5/+5
| | | | | | | | | | | | | | | | per-share. I beleive that almost all the things that this could have done on a per-share basis can be done with other tools, like 'force user'. Almost all the user's of this paramater used it as a global anyway... While this is one step at a time, I hope it will allow me to considerably simplfy the make_connection() code, particularly for the user-level security case. This already removes an absolute truckload of extra attempted password lookups on the guest account. Andrew Bartlett
* old merge from 2.2Gerald Carter2001-11-051-8/+27
|
* Small 'const' updates ahead of some AuthRewrite merging.Andrew Bartlett2001-10-311-7/+7
|
* added basic NTLMSSP support in smbd. This is still quite rough, andAndrew Tridgell2001-10-171-5/+3
| | | | | | loses things like username mapping. I wanted to get this in then discuss it a bit to see how we want to split up the existing session setup code
* fixed typoAndrew Tridgell2001-10-141-1/+1
|