summaryrefslogtreecommitdiffstats
path: root/source/utils/smbcontrol.c
Commit message (Collapse)AuthorAgeFilesLines
* r25387: Sync with 3.2.0 svn treeGerald Carter2007-09-271-4/+0
|
* r24845: Fix a segfault in smbcontrol when called with parameters but no ↵Michael Adam2007-08-311-3/+5
| | | | | | extra args. Michael
* r24843: Add a "validate-cache" control message to winbindd.Michael Adam2007-08-311-0/+44
| | | | | | | | | | | So there is a new subcommand "smbcontrol winbindd validate-cache" now. This change provides the infrastructure: The function currently returns "true" unconditionally. The call of a real cache validation function will be incorporated in subsequent changes. Michael
* r24828: Give smbcontrol an initial talloc stackframe.Michael Adam2007-08-311-1/+6
|
* r24022: use MSG_BROADCAST_PID_STR as value for broadcast messagesStefan Metzmacher2007-07-241-1/+1
| | | | | | | | to fix the cluster case vl: please check, if this works with clustering = no metze
* r24020: merge from http://people.samba.org/bzr/metze/samba/3_2-ctdb-metze/:Stefan Metzmacher2007-07-241-8/+23
| | | | | | | use a timed event to make sure the timelimit is correctly handled in smbcontrol when waiting for messages metze
* r24005: Attempt to fix the build on host deckchairVolker Lendecke2007-07-231-1/+1
|
* r23784: use the GPLv3 boilerplate as recommended by the FSF and the license textAndrew Tridgell2007-07-101-2/+1
|
* r23780: Find and fix more GPL2 -> GPL3.Jeremy Allison2007-07-091-1/+1
| | | | Jeremy.
* r23563: Add dump-event-list command to smbcontrol.Günther Deschner2007-06-211-0/+17
| | | | Guenther
* r23204: Add MSG_SMB_BRL_VALIDATE. Tridge, this is a bit different from your bzrVolker Lendecke2007-05-291-0/+30
| | | | | | | | | | branch, please check if it fulfils your needs. Two changes: The validation is not done inside the brlock.c traverse_fn, it's done as a separate routine. Secondly, this patch does not call the checker routines in smbcontrol directly but depends on a running smbd.
* r23171: Convert connections.tdb to dbwrapVolker Lendecke2007-05-281-3/+4
|
* r23055: Rewrite messages.c to use auto-generated marshalling in the tdb. I'mVolker Lendecke2007-05-211-36/+28
| | | | | | | | | | | doing this because for the clustering the marshalling is needed in more than one place, so I wanted a decent routine to marshall a message_rec struct which was not there before. Tridge, this seems about the same speed as it used to be before, the librpc/ndr overhead in my tests was under the noise. Volker
* r23010: Make the output of "smbcontrol --help" match that of "smbcontrol help".James Peach2007-05-191-5/+30
| | | | Bug #3181.
* r22945: merge 22009 from SAMBA_3_0 + some warning fixes for new code:Stefan Metzmacher2007-05-161-1/+1
| | | | | | | | change TDB_DATA from char * to unsigned char * and fix all compiler warnings in the users metze
* r22934: Change smbcontrol to use messaging_register instead of message_registerVolker Lendecke2007-05-161-23/+35
|
* r22911: Pass a messaging_context to message_send_allVolker Lendecke2007-05-151-1/+1
|
* r22908: All callers of message_init now also call messaging_init. Unify those.Volker Lendecke2007-05-151-3/+0
|
* r22906: Some more message_send_pidVolker Lendecke2007-05-151-33/+46
|
* r22868: Replace some message_send_pid calls with messaging_send_pid calls. MoreVolker Lendecke2007-05-141-29/+65
| | | | tomorrow.
* r22761: This introduces lib/conn_tdb.c with two main functions: ↵Volker Lendecke2007-05-081-34/+6
| | | | | | | | | connections_traverse and connections_forall. This centralizes all the routines that did individual tdb_open("connections.tdb") and direct tdb_traverse. Volker
* r22736: Start to merge the low-hanging fruit from the now 7000-line cluster ↵Volker Lendecke2007-05-071-35/+35
| | | | | | | | | patch. This changes "struct process_id" to "struct server_id", keeping both is just too much hassle. No functional change (I hope ;-)) Volker
* r21780: let smbcontrol use POPT_COMMON_SAMBA options to allow setting debugHerb Lewis2007-03-091-20/+8
| | | | | level. Fix calculation of argc after options are stripped. I couldn't find a popt function that returned this.
* r21322: No feedback means consent :-)Volker Lendecke2007-02-131-12/+16
| | | | | | | | | | | It does not matter if I screw up 3.0.25 or 3.0.26 with this, so do it rather sooner than later. Add the notify support that already exists in 3_0 to 3_0_25. If you want to see this patch dissected into digestable parts, look at 3_0, revisions at about 20800 and following. Volker
* r19789: making progress ... moving on to rpcclient nowGerald Carter2006-11-191-9/+11
|
* r16104: Set version to 3.0.23rc2Gerald Carter2006-06-081-1/+1
| | | | | Bring release tree up to current 3.0 tree (svn merge -r15845:16103 $SVNURL/branches/SAMBA_3_0)
* r15837: starting sync up for 3.0.23rc1 (in sync with SAMBA_3_0 r15822)Gerald Carter2006-05-231-1/+217
|
* r15153: more changes for the release notes and ab's latest fixes for ↵Gerald Carter2006-04-201-1/+1
| | | | winbindd & smbcontrol
* r14900: Separate words in error message.James Peach2006-04-041-1/+1
|
* r14899: Add missing semi-colon.James Peach2006-04-041-1/+1
|
* r14898: This change is an attempt to improve the quality of the information thatJames Peach2006-04-041-0/+43
| | | | | | | | | | | | | | | | | is produced when a process exits abnormally. First, we coalesce the core dumping code so that we greatly improve our odds of being able to produce a core file, even in the case of a memory fault. I've removed duplicates of dump_core() and split it in two to reduce the amount of work needed to actually do the dump. Second, we refactor the exit_server code path to always log an explanation and a stack trace. My goal is to always produce enough log information for us to be able to explain any server exit, though there is a risk that this could produce too much log information on a flaky network. Finally, smbcontrol has gained a smbd fault injection operation to test the changes above. This is only enabled for developer builds.
* r13695: Make code consistent with documentation. :-)Alexander Bokovoy2006-02-261-5/+8
| | | | | smbcontrol was sending messages designated for nmbd and winbindd to smbd. Thus, nmbd and winbindd were "unshutdownable".
* r13571: Replace all calls to talloc_free() with thye TALLOC_FREE()Gerald Carter2006-02-201-1/+1
| | | | macro which sets the freed pointer to NULL.
* r13316: Let the carnage begin....Gerald Carter2006-02-031-2/+112
| | | | Sync with trunk as off r13315
* r13212: r12414@cabra: derrell | 2006-01-28 17:52:17 -0500Derrell Lipman2006-01-281-1/+1
| | | | | | | | | | | | lp_load() could not be called multiple times to modify parameter settings based on reading from multiple configuration settings. Each time, it initialized all of the settings back to their defaults before reading the specified configuration file. This patch adds a parameter to lp_load() specifying whether the settings should be initialized. It does, however, still force the settings to be initialized the first time, even if the request was to not initialize them. (Not doing so could wreak havoc due to uninitialized values.)
* r12781: Support the level parameter for lsa_lookupsids.Volker Lendecke2006-01-081-0/+2
| | | | | | | Simplify the interfaces to domain trusts a bit: Nothing outside secrets.c needs to know we're storing stuff in ucs2. Volker
* r11962: Bring talloc up to date with Samba4, re-add theJeremy Allison2005-11-291-2/+2
| | | | | | | | | talloc_describe_all() function. Fix smbcontrol <pid> pool-usage as we desparately need it working in the field to track down memory leaks. Seriously, when new functionality like the Samba4 talloc is added, don't just disable working functionality like "pool-usage", fix the damn thing first ! Jeremy.
* r10656: BIG merge from trunk. Features not copied overGerald Carter2005-09-301-47/+79
| | | | | | | * \PIPE\unixinfo * winbindd's {group,alias}membership new functions * winbindd's lookupsids() functionality * swat (trunk changes to be reverted as per discussion with Deryck)
* r7415: * big change -- volker's new async winbindd from trunkGerald Carter2005-06-081-2/+49
|
* r6149: Fixes bugs #2498 and 2484.Derrell Lipman2005-03-311-1/+2
| | | | | | | | | | | | | | | | | | 1. using smbc_getxattr() et al, one may now request all access control entities in the ACL without getting all other NT attributes. 2. added the ability to exclude specified attributes from the result set provided by smbc_getxattr() et al, when requesting all attributes, all NT attributes, or all DOS attributes. 3. eliminated all compiler warnings, including when --enable-developer compiler flags are in use. removed -Wcast-qual flag from list, as that is specifically to force warnings in the case of casting away qualifiers. Note: In the process of eliminating compiler warnings, a few nasties were discovered. In the file libads/sasl.c, PRIVATE kerberos interfaces are being used; and in libsmb/clikrb5.c, both PRIAVE and DEPRECATED kerberos interfaces are being used. Someone who knows kerberos should look at these and determine if there is an alternate method of accomplishing the task.
* r6127: Eliminated all compiler warnings pertaining to mismatched ↵Derrell Lipman2005-03-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | "qualifiers". The whole of samba comiles warning-free with the default compiler flags. Temporarily defined -Wall to locate other potential problems. Found an unused static function (#ifdefed out rather than deleted, in case it's needed for something in progress). There are also a number of uses of undeclared functions, mostly krb5_*. Files with these problems need to have appropriate header files included, but they are not fixed in this update. oplock_linux.c.c has undefined functions capget() and capset(), which need to have "#undef _POSIX_SOURCE" specified before including <sys/capability.h>, but that could potentially have other side effects, so that remains uncorrected as well. The flag -Wall should be added permanently to CFLAGS, and all warnings then generated should be eliminated.
* r416: add a newline to the debuglevel message returned string Herb Lewis2004-04-291-1/+9
| | | | and have smbcontrol print the PID with it
* r2: import HEAD into svn+ssh://svn.samba.org/home/svn/samba/trunkCVS Import User2004-04-041-0/+747
metze