summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
| * fix libclinbtsrcdir variable.Jelmer Vernooij2008-10-081-1/+1
| |
| * Fix const warning.Jeremy Allison2008-10-071-1/+1
| | | | | | | | Jeremy.
| * Update vfs version as I've added a const to the security_descriptor paramter ↵Jeremy Allison2008-10-0711-52/+50
| | | | | | | | | | | | | | in fset_nt_acl(). Need to watch the build farm to make sure I haven't broken the AIX or Solaris ACL modules. Jeremy.
| * Make map_errno_from_nt_status() a generic call, not just a cli specific one.Jeremy Allison2008-10-074-160/+175
| | | | | | | | | | Remove some unused calls from vfs_acl_xattr. Test for SD's on existing files. Jeremy.
| * Fixed build warning "passing arg from incompatible pointer type"Tim Prouty2008-10-061-1/+3
| | | | | | | | | | | | | | | | | | The fix explicitly makes the conversion from timeval to time_t using the existing time utility functions. Compiling modules/vfs_smb_traffic_analyzer.c modules/vfs_smb_traffic_analyzer.c: In function `smb_traffic_analyzer_send_data': modules/vfs_smb_traffic_analyzer.c:173: warning: passing arg 1 of `localtime' from incompatible pointer type
| * idmap_adex: Add more debugging to the basic search function.Gerald (Jerry) Carter2008-10-061-0/+18
| | | | | | | | Log the dn of all located entries in order to verify search results.
| * idmap_adex: Add log messages to dc_add_domain for easier debugging.Gerald (Jerry) Carter2008-10-061-0/+8
| | | | | | | | Part of continue work on BUG 5806.
| * If name_to_fqdn fails, retry with the dns domain the DC gave usVolker Lendecke2008-10-061-3/+8
| | | | | | | | | | | | This is a workaround for the cases where you want to join under a netbios name that is different from your hostname, i.e. a name that can not be found in /etc/hosts or dns. In these cases, name_to_fqdn fails or gives invalid results.
| * Log in the parent winbind log where a request is goingVolker Lendecke2008-10-061-0/+4
| |
| * Add netlogond auth methodVolker Lendecke2008-10-064-1/+330
| | | | | | | | | | | | This authenticates against a local running samba4 using SamLogonEx. We retrieve the machine password using samba4's mymachinepwd script and store the schannel key for re-use in secrets.tdb.
| * Add dyn_NCALRPCDIRVolker Lendecke2008-10-064-0/+26
| |
| * Store a local schannel key in secrets.tdbVolker Lendecke2008-10-063-0/+29
| |
| * Fix some nonempty blank linesVolker Lendecke2008-10-051-25/+25
| |
| * Remove an unused variableVolker Lendecke2008-10-051-1/+0
| |
| * Fix some missing error handlingsVolker Lendecke2008-10-053-2/+8
| |
| * OS/X does not have rl_done in readline.hVolker Lendecke2008-10-051-0/+8
| |
| * Fix an uninitialized variable warningVolker Lendecke2008-10-051-0/+2
| | | | | | | | Not sure if we can ever not get domain and dns_domain, but gcc complained
| * Fix an unlikely memleak found by the IBM checkerVolker Lendecke2008-10-041-0/+2
| |
| * Fix an uninitialized variable found by the IBM CheckerVolker Lendecke2008-10-041-0/+1
| |
| * Fix a potential NULL deref in line 258 found by the IBM checkerVolker Lendecke2008-10-041-0/+1
| |
| * "gwen/cc" does not like the double const :-)Volker Lendecke2008-10-041-1/+1
| |
| * Fix the build farm. In this branch cli_echo returns NTSTATUS.Jeremy Allison2008-10-031-1/+4
| | | | | | | | Jeremy
| * Correctly fix smbclient to terminate on eof from server.Jeremy Allison2008-10-033-3/+24
| | | | | | | | Jeremy.
| * Simply our main loop processing. A lot :-). Correctly use events for all the ↵Jeremy Allison2008-10-037-188/+148
| | | | | | | | | | | | | | | | previous "special" cases. A step on the way to adding signals to the events and being able to merge the S3 event system with the S4 one. Jeremy.
| * net_dns: Make "lwinet ads dns register" honor the "interfaces" parameter.Gerald (Jerry) Carter2008-10-031-13/+12
| | | | | | | | | | This is helpful on multihomed hosts that only require a subset of IP addresses be registered with DNS.
| * libaddns: Use the same prerequisite for DDNS update as Windows XP.Gerald (Jerry) Carter2008-10-031-2/+2
| | | | | | | | | | | | | | Hostname, TYPE: CNAME, CLASS: NONE This has to have been broken for ages. I cannot see how it would have worked in any environment.
| * Don't reject a successful alloc :-(.Jeremy Allison2008-10-021-1/+1
| | | | | | | | Jeremy.
| * Fix bug 5805: don't close stdoutDerrell Lipman2008-10-021-1/+3
| | | | | | | | | | | | | | | | - When calling setup_logging multiple times, the code was closing the debug file descriptor before opening or assigning the new one. We don't, however, want to close the debug file descriptor if it is stdout. Derrell
| * The IRIX compiler does not like embedded unnamed unionsVolker Lendecke2008-10-023-13/+13
| |
| * Attempt to fix the build on IRIXVolker Lendecke2008-10-024-6/+6
| | | | | | | | Under irix, "sa_family" is a #define to sa_union.sa_generic.sa_family2
| * Fix bug 5798: "CFLAGS info lost in configure"Volker Lendecke2008-10-021-1/+1
| | | | | | | | | | | | | | | | Michael, please check and merge to the other branches if it's right. Thanks, Volker
| * Fix bug #5080. Access to cups-printers via samba broken with cups 1.3.4, ↵Jeremy Allison2008-10-011-90/+251
| | | | | | | | | | | | | | | | | | Unsupported character set. Cups 1.3.4 expects utf8 to be used in all messages to/from the server. We may be using a different character set so we need to use talloc utf8 push/pull functions in all communication. Needs more testing. Don't release until I've done a thorough test. I also have a version for 3.2.x. Jeremy.
| * Whitespace cleanup.Jeremy Allison2008-10-011-16/+16
| | | | | | | | Jeremy.
| * Fix use of DLIST_REMOVE as spotted by Constantine Vetoshev <gepardcv@gmail.com>.Jeremy Allison2008-10-013-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This API is unusual in that if used to remove a non-list head it nulls out the next and prev pointers. This is what you want for debugging (don't want an entry removed from the list to be still virtually linked into it) but means there is no consistent idiom for use as the next and prev pointers get trashed on removal from the list, meaning you must save them yourself. You can use it one way when deleting everything via the head pointer, as this preserves the next pointer, but you *must* use it another way when not deleting everything via the head pointer. Fix all known uses of this (the main one is in conn_free_internal() and would not free all the private data entries for vfs modules. The other changes in web/statuspage.c and winbindd_util.c are not strictly neccessary, as the head pointer is being used, but I've done them for consistency. Long term we must revisit this as this API is too hard to use correctly. Jeremy.
| * Turn the socket connections into a refcounted list - in the common case ↵Jeremy Allison2008-10-011-44/+95
| | | | | | | | | | | | | | | | | | there'll now only be one socket per smbd. Changed the format of the wire data to (a) include a version number (V1) as the first element. (b) removed the ";)" at the end an replaced it with a "\n". Receiver can change back if needed, and now receiver can just log "as-is" to a text file (making testing easier). Added my (C). Sorry Holger, but I've changed quite a bit now. Jeremy.
| * Convert to allocated strings. Use write_data(), not send as this doesn't ↵Jeremy Allison2008-09-301-58/+42
| | | | | | | | | | | | | | correctly deal with EINTR. Jim and Holger please check this still works. Jeremy.
| * Revert erroneous commit.Jeremy Allison2008-09-301-1/+1
| | | | | | | | Jeremy.
| * Remove current_user_info - not needed.Jeremy Allison2008-09-302-5/+3
| | | | | | | | Jeremy.
| * Restructure the module so it connects to the remote data sinkJeremy Allison2008-09-301-150/+156
| | | | | | | | | | | | | | | | on connect, and closes the socket on client disconnect. This should make it much more efficient. Store the remote fd in a private data pointer off the handle. Finally we need to remove the fstrings and convert to allocated buffer storage. Jeremy.
| * Fix the make test problem Karolin reported. Now rename_open_files actually ↵Jeremy Allison2008-09-301-2/+2
| | | | | | | | | | | | works correctly we must emit the change notify before we change the name, not before. Jeremy.
| * Ensure we null out fsp after a close in all paths.Jeremy Allison2008-09-291-0/+1
| | | | | | | | Jeremy.
| * Avoid freeing fsp twice when opening new_file fails. (Debian #431696)Jelmer Vernooij2008-09-291-0/+1
| | | | | | | | | | If opening new_file fails, fsp would still be set to the files_struct of old_file.
| * s3:mapping_tdb: fix the del_aliasmem() functionStefan Metzmacher2008-09-291-3/+2
| | | | | | | | | | | | We should not cancel the transaction, when we want to delete a key. metze
| * re-added "winbind:ignore domains" patchAndrew Tridgell2008-09-291-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | This option really is essential, as we discover again and again at customer sites. Due to bugs in winbind some domains are toxic. When you are installing at a site and a particular domain in a complex setup causes winbind to segfault or hang then you need a way to disable that domain and continue. In an ideal world winbind could handle arbitrarily complex ADS domains, but we are nowhere near that yet. If we ever get to that stage then we won't need this option.
| * fixed an (unlikely) memory leakAndrew Tridgell2008-09-291-0/+1
| |
| * fixed a segfault on the ctdb destructor codeAndrew Tridgell2008-09-291-3/+10
| |
| * removed unused variablesAndrew Tridgell2008-09-291-2/+1
| |
| * fixed segv on startup with trusted domainsAndrew Tridgell2008-09-291-0/+16
| | | | | | | | | | | | With some setups, idmap_tdb2_allocate_id can be called before the allocate backend is initialised, leading to a segv. This change ensures that the db is opened in all paths that use it
| * [s3]fix build --with-cluster-support after ndr_[pull|push]_struct blob changes.Michael Adam2008-09-291-2/+2
| | | | | | | | Michael
| * s4:configure: require tdb >= 1.1.3 from the systemStefan Metzmacher2008-09-291-1/+1
| | | | | | | | metze