summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
| * wbclient: add wbcGuidToString and wbcStringToGuid helper functions.Günther Deschner2008-10-093-0/+129
| | | | | | | | Guenther
| * wbclient: add wbcGuid structure.Günther Deschner2008-10-091-0/+13
| | | | | | | | Guenther
| * wbclient: add my copyright.Günther Deschner2008-10-091-0/+1
| | | | | | | | Guenther
| * krb5-locator: fix dsgetdcname caller.Günther Deschner2008-10-091-5/+22
| | | | | | | | Guenther
| * wbinfo: fix dsgetdcname caller.Günther Deschner2008-10-091-3/+11
| | | | | | | | Guenther
| * s3-winbindd: use new, richer structures in WINBINDD_DSGETDCNAME implementation.Günther Deschner2008-10-091-21/+40
| | | | | | | | Guenther
| * Remove a pointless level of indirectionVolker Lendecke2008-10-093-12/+1
| |
| * Fix a typoVolker Lendecke2008-10-091-1/+1
| |
| * build: add "make test_wbpad" for checking winbind 32/64bit structure padding.Günther Deschner2008-10-092-0/+86
| | | | | | | | Guenther
| * s3-winbindd: add dsgetdcname request and reply to winbind structure.Günther Deschner2008-10-091-0/+17
| | | | | | | | Guenther
| * For the vfs_acl_xattr.c module, make sure we map GENERIC file and directory bitsJeremy Allison2008-10-085-2/+52
| | | | | | | | | | | | | | to specific bits every time a security descriptor is set. The S4 torture suite proves that generic bits are not returned when querying an ACL set using them (ie. only the specific bits are stored on disk). Jeremy.
| * Fixed "might be uninitialized" warningTim Prouty2008-10-081-2/+2
| |
| * Deal with inheritance from parent directory when setting WindowsJeremy Allison2008-10-083-1/+20
| | | | | | | | | | ACLs. Jeremy.
| * Fix bug #5814 - Winbindd dumping core in a strange manner while doing ↵Jeremy Allison2008-10-081-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "rescan_trusted_domain". From analysis by hargagan <shargagan@novell.com> : "The winbindd_child_died() is also getting called from process_loop() in case of SIGCHLD signal. In this case it doesn't make the timeout_handler to NULL for the first request. It then initiate a new request using schedule_async_request() which installs a new timeout handler for the same request. In such a case, for a badly unresponsive system both the timeout handler can be called. For the first call the "private_data" will be cleared and for another call the timeout handler will be detecting the double free. So, for such a case as well, the winbindd_child_died() should make the timeout_handler to NULL." Jeremy.
| * Remove unused CHECK_FSP macroVolker Lendecke2008-10-082-19/+2
| |
| * 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.