summaryrefslogtreecommitdiffstats
path: root/source3/utils/net.c
Commit message (Collapse)AuthorAgeFilesLines
* s3-build Remove distinct LOCALEDIR subsystemAndrew Bartlett2011-04-131-1/+1
| | | | | | | This is no different to the rest of dynconfig, and so should be dealt with there. Andrew Bartlett
* s3-net: add command "net idmap check"Gregor Beck2011-04-041-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a tool to check the consistency of an idmap tdb database. The default mode is to scan the database and list invalid entries, e.g. records with an invalid format, or records which are valid but for which the reverse mapping entry is missing. With the "--repair" switch, one can enter an interactive repair mode which will prompt for each invalid entry found with the option to delete, skip or edit the record. There is also a non-interactive repair mode triggered by "--auto" which will remove all records with invalid content and fill up mappings which are missing the reverse entry. The "--test" parameter lets "net idmap check" only list the changes that would be written and not actually commit them to the database. The "--lock" option allows to lock the database already in the first reading traverse, in order to remove the race when the database has to be closed and reopened again before writing the changes. Signed-off-by: Michael Adam <obnox@samba.org> Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Mon Apr 4 18:21:09 CEST 2011 on sn-devel-104
* s3-messages: only include messages.h where needed.Günther Deschner2011-03-301-0/+1
| | | | Guenther
* s3-passdb: add passdb.h where needed.Günther Deschner2011-03-301-0/+1
| | | | Guenther
* s3:net add option --dbGregor Beck2011-02-091-1/+2
|
* s3: Fix a typoVolker Lendecke2011-02-021-1/+1
| | | | | Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Feb 2 14:58:52 CET 2011 on sn-devel-104
* Fix bug 7866 - "net" in v3-6-test broken.Jeremy Allison2010-12-151-3/+3
| | | | | | | Someone wasn't careful about testing when not running as root :-). Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Dec 15 20:45:25 CET 2010 on sn-devel-104
* s3-debug Remove 'AllowDebugChange' and use lp_set_cmdline() insteadAndrew Bartlett2010-11-021-8/+1
| | | | | | | | | By removing this global variable, the API between the two different debug systems is made more similar. Both s3 and s4 now have lp_set_cmdline() which ensures that the smb.conf cannot overwrite these the user-specified log level. Andrew Bartlett
* s3-debug Impove setup_logging() to specify logging to stderrAndrew Bartlett2010-11-021-1/+2
| | | | | | | | This change improves the setup_logging() API so that callers which wish to set up logging to stderr can simply ask for it, rather than directly modify the dbf global variable. Andrew Bartlett
* libcli/security Provide a common, top level libcli/security/security.hAndrew Bartlett2010-10-121-0/+1
| | | | | | | | | | | | | | This will reduce the noise from merges of the rest of the libcli/security code, without this commit changing what code is actually used. This includes (along with other security headers) dom_sid.h and security_token.h Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Tue Oct 12 05:54:10 UTC 2010 on sn-devel-104
* s3-dsgetdcname: always pass in messaging context.Günther Deschner2010-09-231-0/+6
| | | | | | Volker, please check. Guenther
* s3-net: only include netapi header when needed.Günther Deschner2010-08-061-0/+1
| | | | Guenther
* s3-popt: Only include popt-common.h when needed.Andreas Schneider2010-08-051-0/+1
|
* s3-secrets: only include secrets.h when needed.Günther Deschner2010-08-051-0/+1
| | | | Guenther
* s3:dom_sid Global replace of DOM_SID with struct dom_sidAndrew Bartlett2010-05-211-4/+4
| | | | | | | | | | This matches the structure that new code is being written to, and removes one more of the old-style named structures, and the need to know that is is just an alias for struct dom_sid. Andrew Bartlett Signed-off-by: Günther Deschner <gd@samba.org>
* s3-net: Added a rather trivial "net printing dump" command.Günther Deschner2010-05-181-0/+8
| | | | Guenther
* s3: Fix a long-standing problem with recycled PIDsVolker Lendecke2010-03-101-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a samba server process dies hard, it has no chance to clean up its entries in locking.tdb, brlock.tdb, connections.tdb and sessionid.tdb. For locking.tdb and brlock.tdb Samba is robust by checking every time we read an entry from the database if the corresponding process still exists. If it does not exist anymore, the entry is deleted. This is not 100% failsafe though: On systems with a limited PID space there is a non-zero chance that between the smbd's death and the fresh access, the PID is recycled by another long-running process. This renders all files that had been locked by the killed smbd potentially unusable until the new process also dies. This patch is supposed to fix the problem the following way: Every process ID in every database is augmented by a random 64-bit number that is stored in a serverid.tdb. Whenever we need to check if a process still exists we know its PID and the 64-bit number. We look up the PID in serverid.tdb and compare the 64-bit number. If it's the same, the process still is a valid smbd holding the lock. If it is different, a new smbd has taken over. I believe this is safe against an smbd that has died hard and the PID has been taken over by a non-samba process. This process would not have registered itself with a fresh 64-bit number in serverid.tdb, so the old one still exists in serverid.tdb. We protect against this case by the parent smbd taking care of deregistering PIDs from serverid.tdb and the fact that serverid.tdb is CLEAR_IF_FIRST. CLEAR_IF_FIRST does not work in a cluster, so the automatic cleanup does not work when all smbds are restarted. For this, "net serverid wipe" has to be run before smbd starts up. As a convenience, "net serverid wipedbs" also cleans up sessionid.tdb and connections.tdb. While there, this also cleans up overloading connections.tdb with all the process entries just for messaging_send_all(). Volker
* Fix typo in comments.Karolin Seeger2010-03-031-1/+1
|
* s3: Implement global locks in a g_lock tdbVolker Lendecke2010-02-121-0/+7
| | | | | | This is the basis to implement global locks in ctdb without depending on a shared file system. The initial goal is to make ctdb persistent transactions deterministic without too many timeouts.
* s3: Add --use-ccache to netVolker Lendecke2010-01-241-0/+1
|
* s3 net: Fix compile warningsKai Blin2010-01-191-4/+7
|
* s3 net/i18n: Use only one spelling for "Usage:"Kai Blin2010-01-191-4/+4
|
* s3/net: split up some printable stings to ease i18nBjörn Jacke2010-01-181-4/+4
| | | | | | If we put strings like "Usage:" into separate _() macros and not the whole "Usage:..." string we can cover much more messages by only one single translation. The drawback is that the message in the sources looks less pretty.
* s3: use enum netr_SchannelType all over the place.Günther Deschner2009-10-131-2/+2
| | | | Guenther
* s3: Remove the lua interpreter againVolker Lendecke2009-09-291-7/+0
| | | | | This was meant to support async winbind. But as the hairy parts of async winbind (getgrent) are done without it, it can go again.
* s3 net: Add getauthuser/setauthuser commands.Kai Blin2009-08-181-0/+124
| | | | These replace the functionality of wbinfo --get-auth-user/--set-auth-user
* Fix EVERY SINGLE build on the buildfarm that doesn't haveJeremy Allison2009-08-121-0/+4
| | | | | | bindtextdomain or textdomain. C'mon, this is what configure.in is *FOR*. Jeremy.
* s3 net: Initial top level support.Kai Blin2009-07-291-153/+152
|
* Make the smbd VFS typesafeVolker Lendecke2009-07-241-1/+0
|
* Revert "net: Use samba default command line arguments."Kai Blin2009-07-221-10/+33
| | | | | | | | | | This reverts commit fb262f79fab00374023e59476e8d05a1015a7041 and related commits c36031778e1983ddb11d3e1fcab35e738dbf94bc 72fd5fa6bb78a054fad5e5ebe19a0c0387a7d45b and 38cd0e086f50ce54d88a19aa5a6803469af90489 This change caused more trouble than it solved. We need to do this differently. Reverting so we don't accidently release this.
* Make gencache more stableVolker Lendecke2009-07-151-0/+2
| | | | | | | | | | This provides a compromise between stability and performance: gencache is a persistent database these days that for performance reasons can not use tdb transactions for all writes. This patch splits up gencache into gencache.tdb and gencache_notrans.tdb. gencache_notrans is used with CLEAR_IF_FIRST, writes to it don't use transactions. By default every 5 minutes and when a program exits, all entries from _notrans.tdb are transferred to gencache.tdb in one transaction.
* net: Use samba default command line arguments.Kai Blin2009-05-251-33/+10
| | | | | | | | | | | | | | | | | | Attention: The meaning of the -N flag changed. To get the old meaning for net groupmap set, use the long option --ntname The long option for using kerberos changed from --kerberos to --use-kerberos net rpc commands will now prompt for a password if none is given. As a benefit, net will now accept an authentication file like other samba command line tools. So no need to specify the password on the command line in scripts anymore. This should fix bug #6357 Signed-off-by: Kai Blin <kai@samba.org>
* s3-net: make "net eventlog" help output a little more appropriate.Günther Deschner2009-04-291-1/+1
| | | | Guenther
* s3:net: add --request-timeout optionStefan Metzmacher2009-04-171-0/+1
| | | | metze
* Shape up pdb_search a bit by making it a talloc ctx with a destructorVolker Lendecke2009-03-071-4/+5
|
* s3-net: add "net eventlog dump".Günther Deschner2009-02-041-0/+8
| | | | | | This allows to dump a native (non-wrapped) win32 *.evt eventlog file. Guenther
* net luaVolker Lendecke2008-12-171-0/+7
| | | | | | | | This adds a lua command line interpreter with some sample code how to build your own data types based on our internal data types. Not meant as the final word, but as a playground for experiments for people. Might be removed later when we find this turns out to be too awkward.
* s3: Change sockaddr util function names for consistencyTim Prouty2008-12-031-1/+1
| | | | Also eliminates name conflicts with OneFS system libraries
* vampire keytab: add command line switch --clean-old-entries .Michael Adam2008-08-011-0/+1
| | | | | | | | | | This allows to control cleaning the keytab. It will only clean old occurences of keys that are replicated in this run. So if you want to ensure things are cleaned up, combine this switch with --force-full-repl or --single-obj-repl (+dn list). Michael (This used to be commit 21385e1c635ea67215eb1da90e7dca97ae2f5d56)
* vampire keytab: introduce switch --single-obj-repl.Michael Adam2008-08-011-0/+1
| | | | | | | | | | | | | | This controls whether single object replication is to be used. This only has an effect when at least one object dn is given on the commandline. NOTE: Now the default is to use normal replication with uptodateness vectors and use object dns given on the command line as a positive write filter. Single object replication is only performed when this new switch is specified. Michael (This used to be commit 0f81111ea8c049eb60f98d4939e520a5a562d2e6)
* net rpc vampire: rename --repl-nodiff to --force-full-repl.Michael Adam2008-08-011-1/+1
| | | | | | | This more clear. Michael (This used to be commit 0ddde9aae88e6244276e1c143056a4bfc7c7fcca)
* vampire keytab: add switch --repl-nodiff to trigger full replication.Michael Adam2008-08-011-0/+2
| | | | | | | I.e. replication without keeping track of the up to date vector. Michael (This used to be commit d4b36e447bce8692416e132ab9f53a6282f54cac)
* net: add "-k" switch for kerberos authentication (in preparation for #5416).Günther Deschner2008-07-311-0/+1
| | | | | Guenther (This used to be commit 4cce94d464b16d29b638da3a581d98a237959b63)
* net: Don't crash on invalid command line options.Kai Blin2008-06-211-1/+1
| | | | | | | This backs out the workaround Jerry added in 4c3bfea9f8d238f9100eaa264b9b2941dff5a6dd. Thanks for the catch. (This used to be commit 20e0bb4800938863cb0aac1a19473748132043fc)
* net: Rename functable3 to functable, get rid of old functablesKai Blin2008-06-101-2/+2
| | | | (This used to be commit bb7c5fc4ec77db4073d3beccf12af12910b6bd07)
* net: Autogenerate "net help" output from net's functable.Kai Blin2008-06-101-0/+1
| | | | (This used to be commit 0feb40bc8408412336c667df4f8bf57c77446ca7)
* net: Use functable3Kai Blin2008-06-101-43/+284
| | | | (This used to be commit 122dfe876d954ee3b3796951df16e1be9e9b0eb8)
* net: Use functable2 to give a short help text for top-level functions.Kai Blin2008-06-101-41/+41
| | | | (This used to be commit e9be24a2cbbd9bc7075c0fe75d44d51184f84dba)
* net: Move net_run_function/net_run_function2 to net_util.cKai Blin2008-06-101-46/+0
| | | | (This used to be commit 73fb5f392dbc1966ec34217e39d565200e071aaf)
* net: fix debuglevel handling.Günther Deschner2008-06-051-1/+3
| | | | | | | | Kai, that one actually needs to stay a global external variable in order to support debuglevel definition only on the commandline for net. Guenther (This used to be commit f6ba7333ab31332198b59651b4252cb3f897b6aa)