summaryrefslogtreecommitdiffstats
path: root/source4
Commit message (Collapse)AuthorAgeFilesLines
* r20909: add a module that implements the LDAP_CONTROL_SHOW_DELETED_OID controlStefan Metzmacher2007-10-102-0/+227
| | | | | | | | it hides objects with isDeleted=TRUE by default, and let them through if the control is present metze (This used to be commit 7108d62cb0360e734045eb39c03508d8528dc9cc)
* r20908: - fix uninitialized usage of 'ctx'Stefan Metzmacher2007-10-101-16/+14
| | | | | | | | - remove unused mem_ctx variable - copy the userman_domain string as child of obj metze (This used to be commit 575938753bb2f3b8593f240234cff71995a28df8)
* r20907: reset krbtgt, machine and administator account passwords to "test"Stefan Metzmacher2007-10-101-1/+91
| | | | | | | (same values which are given the provision code for setup test_secrets.ldb) metze (This used to be commit 42a0304b1f903894bf6902baea47c86e64f9f60a)
* r20906: allow LDAP simple binds using the following syntaxes in the DN field:Stefan Metzmacher2007-10-102-8/+35
| | | | | | | | | | | | CN=Administrator,CN=Users,DC=w2k3,DC=vmnet1,DC=vm,DC=base Administrator@W2K3 W2K3\Administrator w2k3.vmnet1.vm.base/Users/Administrator w2k3 also allows this (and maybe more...?) metze (This used to be commit 40c27ef88df9021e9ef2a6c43aabab709ac9662f)
* r20902: don't crash if the object isn't there yetStefan Metzmacher2007-10-101-0/+4
| | | | | metze (This used to be commit 4588e2522b11f707e608488c782f6988fd97628a)
* r20901: - not all compiler like uint8_t data[0] elements!Stefan Metzmacher2007-10-102-13/+13
| | | | | | | | | | | | | | | | | | | - this fix looks really ugly but I don't know a better solution... if we would use uint8_t *data; then we would send the pointer value also in the network packet and we would need to initialize s->data = ((void *)(&s->data) + 1; to make the memcpy statements work as they're currently, so we use uint8_t data[1] in the struct definition ... tridge: please review careful! hopefully fix the build on solaris and HPUX metze (This used to be commit 015097677c8a65e9f5a4367f4f89193a4b2de76b)
* r20900: fix compiler warningsStefan Metzmacher2007-10-102-1/+4
| | | | | metze (This used to be commit cb59eae91966e3e493c3c992d2b96965d17dac17)
* r20899: fix the build and compiler warningsStefan Metzmacher2007-10-101-0/+5
| | | | | metze (This used to be commit eec93720aced2b4cdad9f6f5a4f6e23587128357)
* r20898: make it work to include ntvfs/ntvfs.h multiple timesStefan Metzmacher2007-10-101-0/+5
| | | | | metze (This used to be commit 6814f38f000e9d44bdf25ca5bc1d69fd82522614)
* r20897: fix compiler warningsStefan Metzmacher2007-10-105-2/+31
| | | | | metze (This used to be commit 5ac562e1e0e8de03c8bcd083a1822b31667c5e21)
* r20896: make the maximum lacount configurable in smb.confAndrew Tridgell2007-10-105-3/+22
| | | | | | | at the moment the brlock_ctdb backend will sometimes fail after dmaster migrations. So to pass tests this needs to be set high. Thats a priority to fix. (This used to be commit 45f5c272f366f6a793941d97c9522c5b2b0cb639)
* r20895: enable ctdb backend at startup (if configured)Andrew Tridgell2007-10-101-0/+4
| | | | (This used to be commit e73063a0c6af927e520b3bdd7574dc7183847813)
* r20894: the new brlock.c is needed (seems a svn rename + new file didn't makeAndrew Tridgell2007-10-101-0/+132
| | | | | it in one commit) (This used to be commit 3315e877ab6504569e2869b52d989fc821982a3b)
* r20893: brlock notifies are currently disabled in the ctdb backend. Use a #ifAndrew Tridgell2007-10-101-6/+13
| | | | | instead of c++ comments (This used to be commit a3beff12a522a9b9e0088365d8f2740a1785bff5)
* r20892: add parameter for enabling ctdb self connectAndrew Tridgell2007-10-101-2/+5
| | | | (This used to be commit ba3ce8abe3457a1245fd4746af780c6055d39425)
* r20891: enable multiple brlock backends. The tdb backend is the default. TheAndrew Tridgell2007-10-103-54/+125
| | | | | prototype ctdb backend is in cluster/ctdb/brlock_ctdb.c (This used to be commit 84d0e5316299931dc26f2a7b86962d2fffcc4b71)
* r20890: spelling fixAndrew Tridgell2007-10-101-1/+1
| | | | (This used to be commit 507266b951272534f0a0bad5fd5e2450438dcdf1)
* r20889: import ctdb cluster backend from bzrAndrew Tridgell2007-10-1017-1/+3733
| | | | | it will be interesting to see how the build farm handles this (This used to be commit 53be449630bd67d649a9e70cc7e25a9799c0616b)
* r20888: local cluster backendAndrew Tridgell2007-10-101-0/+58
| | | | (This used to be commit 5530e6effe03615499fbdc5ff2fe663ffa0223a9)
* r20887: allow the registration of multiple cluster backendsAndrew Tridgell2007-10-103-6/+66
| | | | | this is in preparation for ctdb (This used to be commit 489f022175a1022bcca8053116362825daae5e40)
* r20886: fixed a valgrind errorAndrew Tridgell2007-10-101-0/+1
| | | | (This used to be commit acc96e42e74005f1c381b0ab3f6c1b2e051ffaec)
* r20885: - I forgot the page size passed to enumeration function is actuallyRafal Szczesniak2007-10-102-4/+10
| | | | | | | | | size of a buffer for result returned, not number of entries - pass libnet function returned status to UserListCtx creation to properly mark the last chunk of the list rafal (This used to be commit 05d307546f93794a0a981c3aa942669b9b18afd1)
* r20882: Formatting.Rafal Szczesniak2007-10-101-0/+1
| | | | | rafal (This used to be commit fd0650283b750aec7952b025db54ab46020a547d)
* r20881: Sorting out NetUsrCtx methods. Still a couple of things left.Rafal Szczesniak2007-10-101-42/+133
| | | | | rafal (This used to be commit eebd00ba2bfdfe3bbbcc0a50b91e2e2b03371df6)
* r20872: make the password_hash module specific to the domain partitionStefan Metzmacher2007-10-101-2/+1
| | | | | | | as it's the only partition that can hold securityPrincipal objects metze (This used to be commit 72e9cc2184c3b52a4f98318e905b75a3be49df2e)
* r20871: implement the validFSMOs constructed attribute on the rootdseStefan Metzmacher2007-10-105-21/+82
| | | | | | | | | | for the schema, domain naming and pdc fsmo roles infrastructure and rid manager will be added later, when we have module for them metze (This used to be commit 308f9cf822a3a34dae28a5fa5aa850e2adbeb472)
* r20870: implement the constructed attributes dsSchemaAttrCount,Stefan Metzmacher2007-10-101-0/+44
| | | | | | | | | dsSchemaClassCount and dsSchemaPrefixCount on the rootdse having a loaded dsdb_schema make things so easy...:-) metze (This used to be commit 7862fcdbb5ce43e702512c1acdbb5843ef551293)
* r20869: - mark the rootdse with isSyncronized=TRUE after a successful ↵Stefan Metzmacher2007-10-101-0/+59
| | | | | | | | | replication - reopen the ldb metze (This used to be commit 8e9ff529c8930ee6e1acf5cdd5208924ae1f98af)
* r20868: load the pdc_fsmo and naming_fsmo modulesStefan Metzmacher2007-10-101-2/+2
| | | | | metze (This used to be commit b0e30d030e4294cbab79f4db6e6b19a2afda26cb)
* r20867: add modules to handle the domain naming and the pdc FSMO RolesStefan Metzmacher2007-10-103-0/+263
| | | | | metze (This used to be commit 341fae8e8465e67023ab0e82110835669a593577)
* r20866: - fix debug messages missing new linesStefan Metzmacher2007-10-101-14/+18
| | | | | | | | - use LDB_DEBUG_WARNING in some places - debug if we're the schema master metze (This used to be commit 63f46344437002202990bd34fb200d847fcfcf40)
* r20865: remove useless warning, we now always pass the current partitionStefan Metzmacher2007-10-101-25/+10
| | | | | | | control as non critical control metze (This used to be commit 21fddb643bf05ca2b7c60a4695e1fff0f29ec6d1)
* r20864: move common stuff into an extra functionStefan Metzmacher2007-10-101-85/+62
| | | | | metze (This used to be commit 3f441741a6ff00ba88d3134c97e597285afbfed7)
* r20863: check that there's a current partition control attached to the requestStefan Metzmacher2007-10-101-6/+65
| | | | | metze (This used to be commit b1377a2e240dbe36277816452d33d6abaa486b9e)
* r20859: fix typoStefan Metzmacher2007-10-101-1/+1
| | | | | metze (This used to be commit ba6ee1a098381683223d7efaafb04582a47ea871)
* r20855: pass the DSDB_CONTROL_CURRENT_PARTITION_OID control also for theStefan Metzmacher2007-10-101-10/+27
| | | | | | | send_all case metze (This used to be commit b3fce383d3824ee418cbb7343f5d06720f5d31df)
* r20853: attach the DSDB_CONTROL_CURRENT_PARTITION_OID control when requestsStefan Metzmacher2007-10-101-2/+7
| | | | | | | are passed to a specific partition metze (This used to be commit 06a46b1db46251989676fb04548f038930c83eb5)
* r20852: add a function to add a ldb control to a ldb_requestStefan Metzmacher2007-10-102-0/+40
| | | | | metze (This used to be commit f0bf86ed66f7f9995df35db55f2f3875e7dbacbe)
* r20850: Prefix all server calls with dcesrv_Jelmer Vernooij2007-10-1016-612/+610
| | | | (This used to be commit 76c78b0339cd88c61a13745f7f4e037f400db21b)
* r20849: first step to move away from using find_backend() and use ↵Stefan Metzmacher2007-10-101-5/+20
| | | | | | | | | find_partition() instead metze (This used to be commit 0d75cca6f37975a3855973468dc55520cb3b3fb7)
* r20847: - split some code out into a new function find_partition()Stefan Metzmacher2007-10-101-8/+27
| | | | | | | - make all functions static metze (This used to be commit 3d313f08c7d6b201011f3b4744c8e54b1d0640c7)
* r20836: Use real type name, to fix compilation with -WC++-compatJelmer Vernooij2007-10-101-7/+46
| | | | (This used to be commit 10ca65bd78d27c425ae0347930fd2c9a92fe345c)
* r20834: No longer generate extra pointers for top-level [out] unique pointers.Jelmer Vernooij2007-10-102-35/+11
| | | | (This used to be commit b967f5851f24a4716d386fc569e384b9320b162a)
* r20831: Update RPC-SCANNER as well after IDL changes.Jelmer Vernooij2007-10-101-2/+5
| | | | (This used to be commit 1c562d9f8311c4038fcff067ac6bb8364b606573)
* r20830: merge mgmt workJelmer Vernooij2007-10-107-50/+83
| | | | (This used to be commit 3cc299dbbe278936281f8e7071e6de8ec1bb219c)
* r20826: make the dsdb_control_current_partition struct public and allocate ↵Stefan Metzmacher2007-10-103-5/+20
| | | | | | | | | an oid for the control metze (This used to be commit 684eee52e8812f6d104d8706ab059643ff4faa46)
* r20825: control the subsystem default output type via a variable tooStefan Metzmacher2007-10-101-3/+8
| | | | | metze (This used to be commit 624bd4e5a8ef1b7902ce8df6e8885cd8224a3037)
* r20823: Remove newlines in calls to torture_fail().Jelmer Vernooij2007-10-103-8/+8
| | | | (This used to be commit 37c0cfe83bd9b9f799c880e3b5052a49631a113e)
* r20822: Fix total failure counting.Jelmer Vernooij2007-10-101-9/+7
| | | | (This used to be commit e4691447c47d6e8c938fee934e7a9aba2f418858)
* r20819: - include system/aio.hStefan Metzmacher2007-10-102-2/+3
| | | | | | | | - use full prototype for main - use ifdef instead if metze (This used to be commit b3a3c44f42455d6f84ab2f1f282fb177f8b6013c)