summaryrefslogtreecommitdiffstats
path: root/source3/param
Commit message (Collapse)AuthorAgeFilesLines
* s3-param Remove #defines already in common loadparm.hAndrew Bartlett2011-07-021-12/+0
|
* s3-param Generate parameter tablesAndrew Bartlett2011-07-021-409/+37
|
* param: Finish conversion from lp_wins_support() -> lp_we_are_a_wins_server()Andrew Bartlett2011-07-021-1/+0
| | | | | | | | | Jermey started this in 1997 with 0aa493cc0303aa4177f289b9e4c797c8fa180672 (avoiding the duplicate function makes it easier to generate the struct loadparm_globals). Andrew Bartlett
* s3-param remove unused bIdmapReadOnlyAndrew Bartlett2011-07-021-2/+0
|
* s3-param Remove unused bUpdateEncryptAndrew Bartlett2011-07-021-2/+0
|
* param: Merge param headers into lib/param/loadparm.hAndrew Bartlett2011-06-292-1/+3
| | | | | | | This defines a common table format, so we can in future define a common table. Andrew Bartlett
* s3-param use C99 boolean for falseAndrew Bartlett2011-06-291-118/+118
|
* s3-param use C99 boolean for trueAndrew Bartlett2011-06-291-99/+99
|
* s3-param Convert sDefault to C99 initialisersAndrew Bartlett2011-06-291-142/+142
| | | | | | | | | The conversion has been verified with gdb (p sDefaults before and after) C99 booleans were helpfully provided by gdb, which was used to generate the C99 format, and so have been kept. Andrew Bartlett
* s3-param Remove unused FLAG_DOS_STRINGAndrew Bartlett2011-06-291-2/+2
|
* param: Merge struct parm_struct definitionsAndrew Bartlett2011-06-291-25/+25
| | | | | | | This will allow the parameter tables to be shared between source3 and source4. Andrew Bartlett
* s3-param Use .offset rather than .ptr when defining parametersAndrew Bartlett2011-06-291-6/+5
| | | | | | | | | | | | | | | | | This change has a number of purposes: * It removes the fancy logic around pointers into sDefault for all per-share parameters. Instead, this is always expressed as an offset, rather than implicitly via PTR_DIFF macros. * It makes struct parm_struct almost identical to that as used in source4/param. This will very shortly allow the loadparm tables and most of the 'special' helper functions to be placed in common. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Wed Jun 29 05:50:46 CEST 2011 on sn-devel-104
* s3-param Remove .offset == 0 checks as 'valid' will have offset 0Andrew Bartlett2011-06-291-18/+4
| | | | | | | | | | | | | | The validity of an entry in the parm_table is by having a .p_class of P_LOCAL or P_GLOBAL rather than P_SEPARATOR. Termination of the table is by having a .label of non-NULL. This is possible because there are no longer any specially handled smb.conf options without a value in the struct loadparm_globals or struct loadparm_service. This is required because the first element in the structure will have .offset = 0, and skipping that would be unfortunate (particularly as it is the vital 'valid' variable). Andrew Bartlett
* s3-param use .offset rather than .ptr (renames)Andrew Bartlett2011-06-291-437/+441
| | | | | | | | | | This commit uses GLOBAL_VAR and LOCAL_VAR macros to hide the use of .ptr in the source3 loadparm code. This will then be changed to use offsetof() in a future commit, removing the #define offset ptr hack. Andrew Bartlett
* s3-param use lp_parm_ptr() rather than parm.ptr directlyAndrew Bartlett2011-06-291-63/+58
| | | | | | | | | This will help with a change from .ptr to .offset Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Wed Jun 29 03:26:21 CEST 2011 on sn-devel-104
* s3-param Rename struct service and struct globalsAndrew Bartlett2011-06-281-31/+31
| | | | | | | | The rename of struct service -> loadparm_service and struct globals -> loadparm_globals makes this match the names used in source4/param, and is one step towards a single loadparm definition. Andrew Bartlett
* s3-param Remove lp_parm_stringAndrew Bartlett2011-06-281-12/+0
| | | | | | | Samba 4.0 makes no attempt to provide a loader environment that will allow a module that is not rebuilt to operate. Andrew Bartlett
* s3-param make lp_passdb_backend() a normal lp_ function againAndrew Bartlett2011-06-281-42/+1
| | | | | | | It is now a large number of releases since the multiple passdb backend support was removed in 3.0.23. Andrew Bartlett
* s3-param Remove 'announce version' parameterAndrew Bartlett2011-06-231-65/+0
| | | | | | | | The only users I can find of this on the internet involve confused users, and our own documentation recommends never setting this. Don't confuse our users any longer. Andrew Bartlett
* param: Remove "announce as" parameterAndrew Bartlett2011-06-231-43/+2
|
* lib/util/charset: Remove 'display charset'Andrew Bartlett2011-06-232-21/+1
| | | | | | | | | | | | | | | | | As discussed in 'CH_DISPLAY and gettext' on the samba-technical list: http://lists.samba.org/archive/samba-technical/2011-June/078190.html Setting this to a value other than 'unix charset' does not make sense, as any system where the filesytem charset does not equal the terminal charset will already have problems with programs as simple as 'ls'. It also means that our output could not be pasted as our input in interactive programs or onto our command line, as we never did translate in the DISPLAY -> UNIX direction. The d_printf() calls are retained in case we need to revisit this, and to support display_set_stderr(). Andrew Bartlett
* s3-param Put &Globals in the FN_ macros, rather than in each entryAndrew Bartlett2011-06-211-254/+254
| | | | | | | This global replace allows an easier comparison between the source3 and source4 loadparm systems. Andrew Bartlett
* s3-param Remove 'time offset' from smb.confAndrew Bartlett2011-06-111-9/+0
| | | | | | | | | | This strange parameter is apparently very rarely used, and it seems to me that on modern networks, if clients don't have correct clocks and DST offsets, that many other things (Kerberos) start to fail pretty quickly, and time and DST tables tend to be internet delivered anyway. Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Sat Jun 11 03:54:45 CEST 2011 on sn-devel-104
* s3-param Avoid strupper_m() where possible.Andrew Bartlett2011-06-101-5/+12
| | | | | | | Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Fri Jun 10 04:37:54 CEST 2011 on sn-devel-104
* s3-param Remove special case for global_myname(), rename to lp_netbios_name()Andrew Bartlett2011-06-092-29/+7
| | | | | | | | There is no reason this can't be a normal constant string in the loadparm system, now that we have lp_set_cmdline() to handle overrides correctly. Andrew Bartlett
* s3-param Remove special case for global_scope()Andrew Bartlett2011-06-092-13/+3
| | | | | | | There is no reason this can't be a normal constant string in the loadparm system. (Past reasons were that we didn't have lp_set_cmdline()) Andrew Bartlett
* s3-param Remove special case for lp_workgroup()Andrew Bartlett2011-06-091-16/+3
| | | | | | | | There is no reason this can't be a normal constant string in the loadparm system, now that we have lp_set_cmdline() to handle overrides correctly. Andrew Bartlett
* s3-talloc Change TALLOC_P() to talloc()Andrew Bartlett2011-06-091-1/+1
| | | | | Using the standard macro makes it easier to move code into common, as TALLOC_P isn't standard talloc.
* s3-s4-param: Add hooks for parametric options in the s3/s4 glue layerAndrew Bartlett2011-06-061-0/+26
| | | | | Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Mon Jun 6 10:48:53 CEST 2011 on sn-devel-104
* s4-param Add hook between Samba3 and Samba4 loadparm systems.Andrew Bartlett2011-06-062-2/+64
| | | | | | | | In the top level build, this allows calls to code that requires a lpcfg_ style loadparm_context, while using the global parameters loaded from the source3 loadparm code. Andrew Bartlett
* s3-param always allow the realm parameterAndrew Bartlett2011-06-061-2/+0
|
* s3-param Make lp_ncalrpc_dir() constAndrew Bartlett2011-06-011-1/+1
| | | | | | | | | | | This disables % substitutions in the 'ncalrpc dir' parameter. This is used as a communication point between multiple parts of the codebase, and needs to be internally consistent between all the Samba tasks. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Wed Jun 1 05:30:53 CEST 2011 on sn-devel-104
* s3-param Make lp_dedicated_keytab_file() constAndrew Bartlett2011-06-011-1/+1
| | | | | | This disables % substitutions in the 'dedicated keytab file' parameter. Andrew Bartlett
* s3-param Make lp_realm() constAndrew Bartlett2011-06-011-1/+1
| | | | | | | | This disables % substitutions in the 'realm' parameter. This is used all over the codebase, and needs to be internally consistent between all the Samba tasks. Andrew Bartlett
* s3-param Make lp_name_resolv_order() constAndrew Bartlett2011-06-011-1/+1
| | | | | | | | This disables % substitutions in the 'name resolv order' parameter. This is used all over the codebase, and needs to be internally consistent between all the Samba tasks. Andrew Bartlett
* s3-param Make lp_utmpdir() and lp_wtmpdir constAndrew Bartlett2011-06-011-2/+2
| | | | | | | | This disables % substitutions in the 'utmp dir' and 'wtmp dir' parameters. These are system paths, and need to be consistent between all the Samba tasks. Andrew Bartlett
* s3-param Make lp_piddir() constAndrew Bartlett2011-06-011-1/+1
| | | | | | | | This disables % substitutions in the 'pid dir' parameter. This is used all over the codebase, and need to be internally consistent between all the Samba tasks. Andrew Bartlett
* s3-param Make lp_cachedir() constAndrew Bartlett2011-06-011-5/+5
| | | | | | | | This disables % substitutions in the 'cache dir' parameter. This is used all over the codebase, and need to be internally consistent between all the Samba tasks. Andrew Bartlett
* s3-param Make lp_statedir() constAndrew Bartlett2011-06-011-5/+5
| | | | | | | | This disables % substitutions in the 'state dir' parameter. This is used all over the codebase, and need to be internally consistent between all the Samba tasks. Andrew Bartlett
* s3-param Make lp_lockdir() constAndrew Bartlett2011-06-011-1/+1
| | | | | | | | | This disables % substitutions in the 'lock dir' parameter. This is used all over the codebase, and needs to be internally consistent for the life of the process, as they determine the location of our locking databases. Andrew Bartlett
* s3-param Make lp_smb_passwd_file() and lp_private_dir() constAndrew Bartlett2011-06-011-2/+2
| | | | | | | | | This disables % substitutions in the 'smb passwd file' and 'private dir' parameters. These are used all over the codebase, and need to be internally consistent for the life of the process, as they determine the location of secrets.tdb, as well as the passdb databases. Andrew Bartlett
* s3-param Make lp_smb_ports() constAndrew Bartlett2011-06-011-1/+1
| | | | | | It makes no sense to have a % substiution in the 'smb ports' parameter. Andrew Bartlett
* s3-param Make charset parameters constAndrew Bartlett2011-06-011-3/+3
| | | | | | | This removes the dangerous ability for these parameters to change based on % substitutions. Andrew Bartlett
* s3-param Make lp_passwordserver() const.Andrew Bartlett2011-06-011-1/+1
| | | | | | This means that it no longer takes % substituations, and so the documentation for this behaviour is removed from the smb.conf manpage. (This mode is only useful in security=server, which is already marked as deprecated in 3.6). Andrew Bartlett
* s3-param Move init_iconv() to loadparm.cAndrew Bartlett2011-05-311-0/+14
| | | | | | This assists with some dependency loops Andrew Bartlett
* s3-param split service.c into param and smbd componentsAndrew Bartlett2011-05-312-21/+276
| | | | | | | | | | | The dependency chain of find_service can't be satisfied sensibly outside smbd, so don't include this in the main 'param' subsystem. Also remove the duplicate find_service() and conn_snum_used() from dummysmbd.c: The WAF build does not need these dummies any more, but file. Andrew Bartlett
* s3-smbd provide struct smbd_server_connection * to conn_snum_usedAndrew Bartlett2011-05-311-5/+6
| | | | | | | | | | | | | | | | This provides the 'sconn' parameter to this key functions, that is currently duplicated in dummysmbd.c, which causes duplicate symbol issues in the waf build. This has natrually caused a number of consequential changes across the codebase, includning not passing a messaging context into initial reload_services(): This causes problems because the global smbd_server_connection isn't yet set up, as there isn't a connection here, just the initial process. Andrew Bartlett
* s3-param Depricate 'password server = foo:12389' syntaxAndrew Bartlett2011-05-251-0/+5
| | | | | | | | | This was originally intended to allow the LDAP port on a DC to be varied, but makes little sense to change one port when in an environment where krb5, ldap, smb and potentially DCE/RPC over TCP are involved. Andrew Bartlett
* Fix bug #8150 - Ban 'dos charset = utf8'Jeremy Allison2011-05-241-1/+39
| | | | | Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Tue May 24 03:52:50 CEST 2011 on sn-devel-104
* s3-param: Remove unused snum2params_staticAndrew Bartlett2011-05-181-12/+0
|