summaryrefslogtreecommitdiff
path: root/source3/lib
AgeCommit message (Collapse)AuthorFilesLines
2009-07-03Revert "[s3]pidfile_create: use check is_default_dyn_CONFIGFILE() since we ↵Michael Adam1-1/+1
have it." This reverts commit 1d3dcd1e420104c23769b691d0b8b7958d5c58a7. This fixes Bug #6531 (Pid File creation.) Usually, I would extend is_default_dyn_XYZ() so that it returns true when dyn_XYZ has not been set yet or when its value is equal to the compiled in default value XZY. But this would have a change in effect in popt_common and torture.c: is_default_dyn_CONFIGFILE() is used there to check whether the config file should be overwritten by the contents of the environment variable SMB_CONF_PATH. Currently this is only done when set_dyn_CONFIGFILE() had _not_ previously been called at all, not even with the same value as the compiled in default. Michael
2009-07-02LDB_ERR_INVALID_DN_SYNTAX doesn't exist ...Andrew Tridgell1-1/+1
The correct name is ldb.ERR_INVALID_DN_SYNTAX
2009-07-01s3:util: let parent_dirname() correctly return toplevel filenamesStefan Metzmacher1-1/+1
metze
2009-06-29s3:lib/sysquotas: fix usage of SMB_STRUCT_STAT (struct stat_ex).Michael Adam1-3/+3
This fixes the build with quotas / configure time detection of sys_quota interface. Michael
2009-06-29Fix ndrdump to use a common setup_logging() APIAndrew Bartlett1-0/+9
By adding a new common setup_logging_stdout() API, we no longer need to abuse the ABI compatability between the different setup_logging() calls in Samba3 and Samba4's DEBUG() subsystems. The revert of 49a6d757b4d944cd22c91b2838beb83f04fbe1e9 works with this to fix bug 6211. Andrew Bartlett
2009-06-29Fix bug 6514: net gives unhelpful "lp_load failed" when it's missing smb.confDavid Markey1-1/+1
2009-06-28If the connection is down, don't try another write.Volker Lendecke1-0/+17
2009-06-28Add tldap_search_vaVolker Lendecke1-8/+20
2009-06-28tldap_msg_received: Properly free the asn1_struct in case of an errorVolker Lendecke1-0/+1
2009-06-27Move read_ldap_done after read_ldap_sendVolker Lendecke1-24/+25
2009-06-27Convert tldap to tstreamVolker Lendecke1-11/+17
2009-06-27Add tstream_read_packetVolker Lendecke1-0/+139
2009-06-27tldap: Don't fire off more than one read_ldap request during searchesVolker Lendecke1-10/+22
2009-06-26Fix some dead code warnings from SUN StudioVolker Lendecke2-4/+4
2009-06-20Add tldap paged searches, together with two helper routinesVolker Lendecke1-0/+261
2009-06-20Reorganize retrieving errors and server-sent controlsVolker Lendecke2-84/+67
This attaches the data to the tldap_message instead of the tevent_req. It adds tldap_ctx_lastmsg() to retrieve the last message for the users of the sync wrappers.
2009-06-20Move asn1_load_nocopy() to lib/util/asn1.cVolker Lendecke1-7/+0
2009-06-20Move asn1_blob() to lib/util/asn1.cVolker Lendecke1-13/+0
2009-06-20Add tldap_supports_controlVolker Lendecke1-0/+11
2009-06-20Add tldap_entry_has_attrvalueVolker Lendecke1-0/+18
2009-06-20tldap control supportVolker Lendecke1-7/+122
2009-06-20Prepare control supportVolker Lendecke2-29/+46
We will have arrays of controls passed to tldap.c. Follow a mantra from the classic book "Thinking Forth" by Leo Brodie: Favor counts over terminators :-) This makes the parameter lists to tldap pretty long, but everyone will have wrapper routines anyway, see for example tldap_search_fmt. And the OpenLDAP manpages call the non-_ext routines deprecated, probably for a reason.
2009-06-20Fix empty linesVolker Lendecke1-3/+0
2009-06-19Don't require "Modify property" perms to unjoin bug #6481)Jim McDonough1-0/+1
"net ads leave" stopped working when "modify properties" permissions were not granted (meaning you had to be allowed to disable the account that you were about to delete). Libnetapi should not delete machine accounts, as this does not happen on win32. The WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE flag really means "disable" (both in practice and docs). However, to keep the functionality in "net ads leave", we will still try to do the delete. If this fails, we try to do the disable. Additionally, it is possible in windows to not disable or delete the account, but just tell the local machine that it is no longer in the account. libnet can now do this as well.
2009-06-19Add a missing talloc_move() in tldap_search_recvVolker Lendecke1-1/+1
2009-06-19Add tldap_fetch_rootdseVolker Lendecke1-0/+131
2009-06-19Make tevent_req_is_ldap_error publicVolker Lendecke1-1/+1
2009-06-19Add tldap_context_[gs]etattrVolker Lendecke1-0/+78
This adds the ability to attach extended information to a tldap_context. This will become useful once we start to do automatic reconnects for example, a callback function might want attach a pointer to credentials so that it can rebind. The initial user of this will be a cached rootdse, so that things like the ability to do paged searches can be cached.
2009-06-18Fix bug 4699: Remove pidfile on clean shutdownVolker Lendecke1-8/+18
2009-06-18Fix resource leak in lib/ldb/tools/ldbmodify.cSlava Semushin1-0/+1
Patch for bug #6389
2009-06-18Fix syntax error in lib/ldb/ldb_sqlite3/base160.cSlava Semushin1-1/+1
Patch for bug #6388
2009-06-16s3-netapi: Fix Bug #6451: net/libnetapi user rename using wrong access bits.Günther Deschner1-0/+2
Guenther
2009-06-16s3-netapi: Fix Bug #6305. Correctly prompt for a password when a username ↵Günther Deschner1-1/+5
was given. When no callback or wrapping has managed to get a password, prompt in the netapi connection manager for a password. Guenther
2009-06-16s3-netapi: add NetGetJoinInformation example code.Günther Deschner2-0/+110
Guenther
2009-06-12Add basic tracing of tldap messagesVolker Lendecke1-0/+10
2009-06-12Add debugging facility to tldap, analogous to teventVolker Lendecke1-0/+32
2009-06-12s3: Call va_end() after all va_start()/va_copy() calls.Andrew Kroeger3-2/+3
There are error paths in S3 where va_end() is not properly called after va_start() or va_copy() have been called. These issues were noted while performing an inspection for S4 bug #6129. Thanks to Erik Hovland <erik@hovland.org> for the original bug report.
2009-06-10Make ctemp async. Fix the test to pass against W2K3.Jeremy Allison1-3/+1
Jeremy.
2009-06-08Make open_udp_socket() IPv6 clean. Trying to fix bug #6437 - Unable to join ↵Jeremy Allison1-10/+25
IPv6-only ads domain. Avaiting feedback from submitter before backport to 3.4 and earlier. Jeremy.
2009-06-08Add tlda_add_mod_strVolker Lendecke1-0/+17
2009-06-08s3-charcnv: always talloc_free in convert_string_talloc() error path.Günther Deschner1-2/+1
Guenther
2009-06-08s3-charcnv: remove remaining malloc references in convert_string_talloc().Günther Deschner1-2/+2
Guenther
2009-06-07Add tldap_pull_uint32Volker Lendecke1-0/+12
2009-06-07Fix syntax of sending a delete requestVolker Lendecke1-1/+1
2009-06-06Add some samba-style tldap utility functionsVolker Lendecke1-0/+351
2009-06-06Add the early start of an async ldap libraryVolker Lendecke1-0/+1835
There's a lot of things this does not do yet: For example it does not parse the reply blob in the sasl bind, it does not do anything with controls yet, a lot of the ldap requests are not covered yet. But it provides a basis for me to play with a pdb_ads passdb module.
2009-06-06Allow AF_UNIX for open_socket_outVolker Lendecke1-0/+4
2009-06-04s3: map NetBSD's errno on posix open calls for symlinksBjörn Jacke1-0/+3
This is well undocumented but NetBSD returns EFTYPE on O_NOFOLLOW open calls on symlinks.
2009-06-03s3: correct check for usleep value boundariesBjörn Jacke1-1/+1
2009-05-31Fix some nonempty blank linesVolker Lendecke1-52/+50