1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-14 19:24:43 +03:00

169 Commits

Author SHA1 Message Date
Andrew Bartlett
4b6f928103 Add the -s command to keep smbpasswd quiet during the tests.
Andrew Bartlett
(This used to be commit 180d7e8c43d754a0ba4494707ac7924ab4a06d72)
2002-01-21 00:25:24 +00:00
Andrew Bartlett
b2cfadcac1 Also echo the smbpasswd command line
(This used to be commit 71b63db1bf08b5d0b88d5d83dca8f2c6767c4123)
2002-01-20 22:51:16 +00:00
Andrew Bartlett
03a4ebbfac This should get the oldstyle domain join tests working again.
(This used to be commit 983fe933431d0ee6f2e5083a5c768b8ed8911463)
2002-01-20 22:20:25 +00:00
Andrew Bartlett
ddc1b816d7 A couple more little fixes for the domain security tests.
(This used to be commit 409fb69ecbf1849b5c92ea018eaed126a4f8a24d)
2002-01-20 22:06:35 +00:00
Andrew Bartlett
f5dec543e6 Try to see if we can get these tests working...
(This used to be commit e809e6c20f08658f0d087c30767f9e38e53507fc)
2002-01-20 21:41:07 +00:00
Andrew Bartlett
1a74d8d1f0 This is another *BIG* change...
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 used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 14:30:58 +00:00
Andrew Bartlett
72544acc0d Fix up runlist botchup.
(This used to be commit af37a86917c969118a46cff7574487dbe1c75a2f)
2002-01-19 00:38:34 +00:00
Andrew Bartlett
1188ffe214 Update the build farm's test runlist and make it a bit easier to read.
(This used to be commit 12dcb55a3a89ce4b7daa5d41c41ebaf9e15b3de0)
2002-01-18 23:52:43 +00:00
Martin Pool
666a64ac56 Add a panic action that tries to call gdb noninteractively to get a
backtrace.   Will break on many machines, but we're already crashed in
this case.
(This used to be commit f0878f19eb729d70cc96f450b4b0d2c180498a35)
2001-12-10 08:10:05 +00:00
Andrew Tridgell
287df36a0e switch off level 100 debug for server security
(This used to be commit 75ad6df18454022372526332dcde51bcb4285b97)
2001-12-10 03:06:15 +00:00
Andrew Tridgell
f10f564c00 up the log level for server level security to try to track down the
segvs in the build farm
(This used to be commit 228d4fc47b8adbcbda81bffaea09b616b5d89992)
2001-11-27 22:49:29 +00:00
Andrew Tridgell
94ee404865 don't use /dev/null for a smbpasswd file
(This used to be commit 067a4f87ac5dc2b5cf902c42f56923d0c5e29bc2)
2001-11-27 22:47:09 +00:00
Andrew Bartlett
8b7434b2a0 Fix up the build farm again.
This should get us 'green' for once...

Andrew Bartlett
(This used to be commit 042b9e3a6332473dc88c36dd7f99428644324ac4)
2001-11-26 02:10:59 +00:00
Tim Potter
f45c2e52b7 Allow lookup of users with spaces in their name.
(This used to be commit 751ea8cfb931e1de6df447ed05e051262cdeb304)
2001-11-26 00:19:23 +00:00
Tim Potter
e7d230d327 Fixed bug in canned results list for checking the error code of wbinfo.
Made test names more verbose.
(This used to be commit 87955fcf303d82d38ae543e7986c59fd086dc2db)
2001-11-23 03:24:36 +00:00
Martin Pool
71c15a5f48 Rename $pwd to $test_root to avoid future confusion.
(This used to be commit fa7367a9731bc139ff4611f2781f3ca9bc7f89a7)
2001-11-22 23:59:48 +00:00
Martin Pool
4950e6feb6 Back out the change in 1.11 that set the poorly-named $pwd variable --
for the build farm this is actually the root directory for building,
or something like that.  Thanks a.b.
(This used to be commit 309b718842dc36cd0b74c4c735684cd4613fff01)
2001-11-20 06:21:33 +00:00
Martin Pool
2d33bef2c1 Also show $tree in diagnostics.
(This used to be commit af65a01d0d80a86f405439ed5c46cf71026a5eb8)
2001-11-19 08:27:32 +00:00
Martin Pool
68893d4a2f Give sensible defaults to some variables that are set by the build
farm but not present in Make.
(This used to be commit 0d6d0c31f9aecf1e35487ad26cc2f2c4c7d732f0)
2001-11-14 06:07:21 +00:00
Martin Pool
0b5cea7fc2 Little note about what's happening with Satyr.
(This used to be commit b6745ccd33544cfae5811ecdff7c1aea9d454eed)
2001-11-14 05:19:53 +00:00
Martin Pool
da0128e566 Doc.
Try not to run tests if the user specified --prefix=/usr* or something
similar, because it would not be nice(!) to clobber their
configuration file and passwords.  Eventually I think we want to run
the installed versions, but specify different paths for everything.
(This used to be commit b18703fc8e15244dd840d1a1e9455a114e3f0408)
2001-11-14 05:12:03 +00:00
Andrew Bartlett
c812f1d40e If we disable hostname lookups we can at least get a uniform answer for testing
the rhosts and hostsequiv stuff with.

Andrew Bartlett
(This used to be commit 3a2a96772304bbf04a2bdb2d3a8f9d92df62fc5f)
2001-09-24 05:27:44 +00:00
Andrew Bartlett
5377944635 Fix up the test for some of the quirkier hosts on the farm, and enable one
previously disabled sub-test.
(This used to be commit 4df974527c7dbe88e7cbe9feb8e87f7ce89012b2)
2001-09-20 08:28:41 +00:00
Andrew Bartlett
c16effd5fb Add and modify some of the various tests I have had sitting around here for a
little while.  This should give us a bit more coverage.

Andrew Bartlett
(This used to be commit 9e5a1d1623872a598c936e596270abe519c36e97)
2001-09-20 06:23:29 +00:00
Tim Potter
ab4ebf4dd6 Fixed typo.
(This used to be commit 2138c4461921b8ac3141231169af1eaa6e85f9ba)
2001-09-12 07:22:55 +00:00
Christopher R. Hertel
0366f1d4bc Typo fix per Vance on IRC.
(This used to be commit 6f388502622fe77ae13ac2b0ae8f39b2e77ba455)
2001-09-09 04:21:12 +00:00
Tim Potter
a3f96dd229 Another winbind test - fill in later.
(This used to be commit 99071c45d05231e5683b37823bcca90542f4e332)
2001-08-05 11:19:34 +00:00
Andrew Bartlett
5167978dfb Some minor doco on what the build_farm dir does
(This used to be commit 9bfc480bda8ee3478d17d657cf2fc1a846707130)
2001-07-11 10:53:41 +00:00
Andrew Bartlett
8326666b7c Update tests, start testing password server code, now I have it working and
know what it does...

Andrew Bartlett
(This used to be commit 51903dbfee2fa2b5d94b1d16ebdbb3356e13884d)
2001-07-08 14:24:29 +00:00
Andrew Bartlett
9fa590b832 Allow us to vary the log-level, so we can run at level 1 normally,
and push it to 10 when we fail (we redo the test).

Also disable the server-level security testing till it know what it does

Andrew Bartlett
(This used to be commit 805c20452e98c5e3d3fb24537ce722d4318ffa90)
2001-07-05 11:34:50 +00:00
Andrew Tridgell
9c743f9b8b added line-feed at end of templates
(This used to be commit fe5d38780fe2998576ed0ddbec6996d32cbda4a1)
2001-07-05 06:51:47 +00:00
Andrew Bartlett
592e237876 Running torture-RANDOMIPC on the build farm doesn't go down as a 'good idea' as its logsfiles are BIG!
(This used to be commit bc6160a48282f026845476e632fe365ff2fd63d2)
2001-07-03 04:06:10 +00:00
Andrew Bartlett
b07605976a Fix the torture test, we had the wrong file-name in the tests
Andrew Bartlett
(This used to be commit d04ea88b5d4b010d77dec45104dcf6a2b5a071f2)
2001-07-02 09:10:32 +00:00
Andrew Bartlett
61b1874105 We need strict locking to pass LOCK4
Andrew Bartlett
(This used to be commit 584a14a2163a22d6a532c926040f4f9bcc34463d)
2001-07-02 07:20:00 +00:00
Andrew Bartlett
e3d6627f05 Start of smbtorture based testing. Not all of smbtorture's facilites
are used, but these ones should pass.

Andrew Bartlett
(This used to be commit eee251f71071034b6d1a74d192cdabe8e24dc08b)
2001-07-02 07:18:49 +00:00
Andrew Tridgell
39117f1650 fixed guest account for build farm boxes
(This used to be commit 0d112d7960353b33e9c5015c39a107a47e6f690d)
2001-06-28 05:57:56 +00:00
Andrew Bartlett
dc346a5c6d Jigger around with the tests a bit more
We now test security=share, security=user, security=server for both the
positive and negitive case (good/bad pw) and check that guest shares work for
share level security.

The server level security stuff seems to test positive without actualy
contating a server (another LIBSMB_PROG based smbd) - I will need to look into that...

Andrew Bartlett
(This used to be commit 19fdc553d6ab06e53c21425468f86da56f4d9153)
2001-06-27 13:58:58 +00:00
Andrew Bartlett
a0b75f7da7 Add the generic funcions file for the basicsmb tests
Andrew Bartlett
(This used to be commit b28baf71a7d947cfe8bda546f4e70194da0781da)
2001-06-27 07:59:09 +00:00
Andrew Bartlett
d6ffe900c9 Changed some of the tests around, made failures for parts actualy count
Andrew Bartlett
(This used to be commit 56a881b2b4957912055fdf053ef37ca2ea3606b8)
2001-06-27 00:32:52 +00:00
Andrew Bartlett
4c83248fcf Added the basic tests of smb functionality for HEAD
This works with the new build farm system

Andrew Bartlett
(This used to be commit 542977bc4323e041512e91d7a38422e7abc4e5ae)
2001-06-26 07:41:40 +00:00
Tim Potter
8a50f4ded9 Test login using pam_winbind.so and group membership.
(This used to be commit 4c2b915ed12584037731d8ccd246ad54986a7564)
2001-05-17 07:02:08 +00:00
Tim Potter
b10ae68700 Fixed lookup of entire /etc/{passwd,group} file line.
(This used to be commit b208d74e0524514fdb48f80c76192df12238a64e)
2001-05-15 01:54:22 +00:00
Tim Potter
dcc39ea439 Cleaned up bitrot in nsswitch testsuite. Merged tests across from TNG
branch.
(This used to be commit acef477383e5739292e764c17cef87822a09f13b)
2001-05-09 04:59:49 +00:00
Richard Sharpe
53a331cfb2 Bulk add of the test suite for libsmbclient ...
(This used to be commit adef47b5173b9a028224307490960ce89762709b)
2001-03-09 13:29:06 +00:00
David O'Neill
3380ffae9c Changes from APPLIANCE_HEAD:
testsuite/printing/psec.c
        - Use lock directory from smb.conf parameter when peeking at the
          ntdrivers.tdb file.
    source/rpc_parse/parse_sec.c
        - fix typo in debug message
    source/script/installbin.sh
        - create private directory as part of 'make install'.
    source/nsswitch/winbindd_cache.c
    source/nsswitch/winbindd_idmap.c
    source/passdb/secrets.c
    source/smbd/connection.c
        - always convert tdb key to unix code-page when generating.
    source/printing/nt_printing.c
        - always convert tdb key to unix code-page when generating.
        - don't prepend path to a filename that is NULL in
          add_a_printer_driver_3().
    source/rpc_server/srv_spoolss_nt.c
        - always convert tdb key to unix code-page when generating.
        - don't prepend server name to a path/filename that is NULL in the
          fill_printer_driver_info functions.
    source/printing/printing.c
        - always convert tdb key to unix code-page when generating.
        - move access check for print_queue_purge() outside of job delete
          loop.
    source/smbd/unix_acls.c
        - fix for setting ACLs (this got missed earlier)
    source/lib/messages.c
        - trivial sync with appliance_head
(This used to be commit 376601d17d53ef7bfaafa576bd770e554516e808)
2001-01-11 20:41:19 +00:00
David O'Neill
ae7f08398b Brief documentation on using the virtual printer code
(This used to be commit 03dd90ab923ec88cdada8c5d725d9482bd9826f2)
2000-12-12 18:03:50 +00:00
Tim Potter
65fd1be152 Fix error string.
(This used to be commit 73b237e639717019c596954c745b7e4d038ddc8c)
2000-12-12 06:05:13 +00:00
Tim Potter
00ac8b3708 Compile fixes for changes in make_sec_desc() interface.
(This used to be commit 7b896697d134eb4fad1ceef5cdd2dab2b5980187)
2000-12-08 02:59:49 +00:00
Tim Potter
88fcc1b623 Fixed some debugging code.
(This used to be commit 369a378b3390b060a676c67950f020c4d147fe6d)
2000-12-04 00:07:27 +00:00
David O'Neill
4a205df720 Changes from APPLIANCE_HEAD:
- add empty README file for vlp.  Blame Tim.  =)
(This used to be commit 0ee469f566dbfdac1769fefbb5e61ce39d267872)
2000-11-16 18:54:42 +00:00