summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
| * Add type-safe policy_handle_create/findVolker Lendecke2009-04-182-0/+57
| |
| * Add some constVolker Lendecke2009-04-182-3/+7
| |
| * s3-spoolss: remove some direct checks for 0 uid in AddForm,SetForm,DelForm.Günther Deschner2009-04-171-4/+13
| | | | | | | | | | | | Also add some become_root()/unbecome_root() pairs which were missing IMHO. Guenther
| * s3:net: add --request-timeout optionStefan Metzmacher2009-04-173-0/+4
| | | | | | | | metze
| * s3:net_rpc: don't shutdown a cli_state passed from the callerStefan Metzmacher2009-04-171-9/+8
| | | | | | | | | | | | This fixes a crash bug if we timeout in net rpc trustdom list. metze
| * s3-selftest: enable RPC-SPOOLSS.Günther Deschner2009-04-171-1/+1
| | | | | | | | Guenther
| * s3-spoolss: add support for _spoolss_EnumPrinterDrivers() level 6.Günther Deschner2009-04-171-1/+25
| | | | | | | | Guenther
| * s3-spoolss: add support for _spoolss_EnumPrinterDrivers() level 5.Günther Deschner2009-04-171-0/+71
| | | | | | | | Guenther
| * s3-spoolss: add support for _spoolss_EnumPrinterDrivers() level 4.Günther Deschner2009-04-171-0/+90
| | | | | | | | Guenther
| * s3: make installmo and uninstallmo scripts executableMichael Adam2009-04-172-0/+0
| | | | | | | | Michael
| * s3: Fix uninstallmoMichael Adam2009-04-171-1/+2
| | | | | | | | Michael
| * s3-selftest: samba 3 also passes RPC-JOIN so enable it.Günther Deschner2009-04-171-1/+1
| | | | | | | | Guenther
| * s3:registry: Prevent creation of keys containing the '/' character.Michael Adam2009-04-171-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | This creates a broken registry that can only be fixed with tdbtool, since the '/' sign is used as a key separator after normalization at a lower level. This makes e.g. "net conf setparm abc/def comment xyz" fail with WERR_INVALID_PARAM, which is much more desirable than a broken registry.tdb. Michael
| * s3-samr: set the builtin_domain bool flag in get_samr_dispinfo_by_sid().Günther Deschner2009-04-171-0/+2
| | | | | | | | | | | | | | | | | | Volker, please check. Found by torture test RPC-SAMR-PASSWORDS-PWDLASTSET (which we pass with this fix). Guenther
| * s3-selftest: enable RPC-SAMR-PASSWORDS-PWDLASTSET whilte testing Samba3.Günther Deschner2009-04-171-1/+2
| | | | | | | | Guenther
| * Merge branch 'master' of /home/jmcd/samba/git.samba.org/samba-master into ↵Jim McDonough2009-04-1714-11/+470
| |\ | | | | | | | | | mymaster
| | * s3-selftest: enable RPC-LSA-LOOKUPSIDS against samba 3.Günther Deschner2009-04-171-1/+1
| | | | | | | | | | | | Guenther
| | * Add torture tester to ensure we don't regress the ulogoff bug.Jeremy Allison2009-04-161-0/+45
| | | | | | | | | | | | Jeremy.
| | * Fix bug found by Tim Prouty, logging off and then re-using a vuid can cause ↵Jeremy Allison2009-04-161-0/+11
| | | | | | | | | | | | | | | | | | | | | smbd to access a freed structure. Jeremy.
| | * When doing a cli_ulogoff don't invalidate the cnum, invalidate the vuid.Jeremy Allison2009-04-161-1/+1
| | | | | | | | | | | | Jeremy.
| | * Fix IDL licensing file that got missed when IDL files were moved.Jeremy Allison2009-04-161-0/+9
| | | | | | | | | | | | Jeremy.
| | * Add notify_onelevel.tdbVolker Lendecke2009-04-168-0/+383
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This optimizes non-recursive notifys. For non-recursive notifies we can use a per-directory file-id indexed notify record. This matters for the Windows Explorer and IIS cases which do not use recursive notifies. In these cases, we do not have to shuffle around the whole notify record on every change. For the cluster case, this improves correctness of the notifies, ctdb only distributes the tdb seqnum once a second, so we can lose notifies.
| | * Rename notify_context->db to db_recursiveVolker Lendecke2009-04-161-9/+12
| | |
| | * In net_conf_import, start a transaction when importing a single share.Martin Schwenke2009-04-161-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit d69c3db9d44ad5d9fd1f5d7a9499f3bd79ecfb47 caused the transaction start to be conditional but the commit is still unconditional, so an error occurs when importing a single share. An alternate fix would be to return the transaction start to be unconditional but then it would occur before other error checking. Signed-off-by: Martin Schwenke <martin@meltin.net> Signed-off-by: Michael Adam <obnox@samba.org>
| * | Don't look up local user for remote changes, even when root.Jim McDonough2009-04-161-6/+10
| |/
| * s3-lsa: Fix Bug #6263. Unexpected LookupSids reply crashes XP pre-SP3.Günther Deschner2009-04-161-1/+9
| | | | | | | | | | | | | | LookupSids needs to bounce back string sids in case of NT_STATUS_NONE_MAPPED. Guenther (cherry picked from commit 1c9266c8caa59e287b993393b6050732a0b33547)
| * Fix bug #6089 - Winbind samr_OpenDomain not possible with Samba 3.2.6+Jeremy Allison2009-04-158-53/+45
| | | | | | | | | | | | | | What a difference a name makes... :-). Just because something is missnamed SAMR_ACCESS_OPEN_DOMAIN, when it should actually be SAMR_ACCESS_LOOKUP_DOMAIN, don't automatically use it for a security check in _samr_OpenDomain(). Jeremy.
* | Remove use of talloc_reference in cli_rpc_pipe_open_schannel_with_key()Andrew Bartlett2009-04-205-9/+11
| |
* | s3:ntlmssp Remove use of talloc(NULL) in NTLMSSP codeAndrew Bartlett2009-04-202-12/+12
| |
* | s3:auth Fix segfault: Always initialise returned session keysAndrew Bartlett2009-04-191-1/+3
| |
* | s3:ntlmssp Fix segfault: msrpc_gen now uses talloc()Andrew Bartlett2009-04-201-46/+8
| |
* | Fix crash bug in NTLMSSP caused by msrpc_parse() moving to tallocAndrew Bartlett2009-04-161-4/+2
| |
* | Merge branch 'master' of ssh://git.samba.org/data/git/samba into ↵Andrew Bartlett2009-04-156-42/+23
|\| | | | | | | libcli-auth-merge-without-netlogond
| * s3-spoolss: Fix format of description string in spoolss_PrinterInfo1.Günther Deschner2009-04-141-10/+6
| | | | | | | | | | | | | | This is what windows does and should get us closer to show the appropriate printer location string in explorer. Guenther
| * netdomjoin-gui: make sure to grey out change fields when not running as root.Günther Deschner2009-04-141-0/+15
| | | | | | | | Guenther
| * s3-nsswitch: fix make test_wbpad.Günther Deschner2009-04-141-1/+1
| | | | | | | | Guenther
| * s3-svcctl: fix memcpy in _svcctl_EnumServicesStatusW().Günther Deschner2009-04-141-2/+1
| | | | | | | | | | | | | | | | Make sure we are not copying more than what we have as valid data. Fix from Jeremy. Thanks a lot for watching this so closely! Guenther
| * s3-spoolss: remove unused dup_nt_devicemode().Günther Deschner2009-04-142-29/+0
| | | | | | | | Guenther
* | s3: Fix ntlm_auth and winbindd to use new common libcli/auth APIsAndrew Bartlett2009-04-142-11/+11
| |
* | Make Samba3 use the new common libcli/auth codeAndrew Bartlett2009-04-1412-144/+164
| | | | | | | | | | This is particuarly in the netlogon client (but not server at this stage)
* | Use common samsync delta decryption functions in libnet_samsync.cAndrew Bartlett2009-04-141-157/+7
| | | | | | | | Andrew Bartlett
* | More work to adapt to merged libcli/auth function prototypesAndrew Bartlett2009-04-145-16/+20
| |
* | Adapt to common crypto functions: sam_pwd_hash() -> sam_rid_crypt()Andrew Bartlett2009-04-142-8/+10
| |
* | Rework Samba3 to use new libcli/auth code (partial)Andrew Bartlett2009-04-1444-2514/+150
| | | | | | | | | | | | | | | | | | | | | | This commit is mostly to cope with the removal of SamOemHash (replaced by arcfour_crypt()) and other collisions (such as changed function arguments compared to Samba3). We still provide creds_hash3 until Samba3 uses the credentials code in netlogon server Andrew Bartlett
* | Move DRSUAPI per-attribute decryption into a common fileAndrew Bartlett2009-04-141-71/+5
|/ | | | | | | This file (contining metze's decryption routines) is now also be used by Samba3's DRSUAPI implementation Andrew Bartlett
* s3:charcnv remove now unused malloc() based conversion functionsAndrew Bartlett2009-04-142-43/+0
|
* Add some harmless use of talloc_tos() in ntlm_authAndrew Bartlett2009-04-142-5/+5
|
* Convert Samba3 to use the common lib/util/charset APIAndrew Bartlett2009-04-1421-356/+190
| | | | | | | | | | | | This removes calls to push_*_allocate() and pull_*_allocate(), as well as convert_string_allocate, as they are not in the common API To allow transition to a common charcnv in future, provide Samba4-like strupper functions in source3/lib/charcnv.c (the actual implementation remains distinct, but the API is now shared) Andrew Bartlett
* Solve some of the conflict between Samba3 and Samba4 push_stringAndrew Bartlett2009-04-148-53/+86
| | | | | | | | This renames push_string in Samba3 into push_string_base and push_string_check for the two different use cases. This should allow push_string to be imported from Samba4, using it's calling conventions.
* s3-rpcclient: add set_job command.Günther Deschner2009-04-131-0/+55
| | | | Guenther