summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* s3: Fix OneFS bug opening streams with truncating dispositionAravind Srinivasan2009-02-181-1/+1
| | | | | Do not attempt to delete streams on a truncating open, if the name we're opening is itself a stream
* s3: Fix streams enumeration bug in OneFS implementationAravind Srinivasan2009-02-183-18/+68
| | | | | | | | | | | | | Previously, we didn’t call SMB_VFS_OPEN_DIR from the streams module, instead we called fdopendir(). As a result we failed to populate the dir_state list in the readdirplus module. So when we tried to view the stream data, we will always returned NULL. To solve this I separated onefs_opendir() and the initialization of the dir_state list. This is done by introducing a new utility function “onefs_rdp_add_dir_state()”, which initializes the dir_state structure and adds it to the dir_state list. This function is called from the streams module before calling readdir().
* S3: Log warning in smbstatus about lack of pid in anonymous mode.todd stecher2009-02-181-0/+4
|
* S3: Stop creating SMBD cores when failing to create a pipe.todd stecher2009-02-183-4/+22
| | | | | | This was uncovered when the MAX FD limit was hit, causing an instant core and invoking error reporting. This fix causes SMBD to exit, but without building a core.
* S3: Allow SMBD processes to survive in low memory condidtionstodd stecher2009-02-183-0/+39
| | | | | | This commit adds a configure argument which allows for setting MADV_PROTECT in the madvise() API. With this enabled the kernel won't kill SMBD when it's running low on memory.
* s3-spoolss: remove old spoolss_GetPrinterDriverDirectory.Günther Deschner2009-02-194-256/+0
| | | | Guenther
* s3-spoolss: use pidl for _spoolss_GetPrinterDriverDirectory.Günther Deschner2009-02-193-95/+38
| | | | Guenther
* s3-rpcclient: use rpccli_spoolss_GetPrinterDriverDirectory in rpcclient.Günther Deschner2009-02-191-17/+37
| | | | Guenther
* s3: re-run make samba3-idl.Günther Deschner2009-02-193-3/+11
| | | | Guenther
* spoolss: make spoolss_DriverDirectoryInfo1 public and gensize.Günther Deschner2009-02-191-1/+1
| | | | Guenther
* s3-spoolss: add support for "AddPort" via _spoolss_XcvData for Vista.Günther Deschner2009-02-191-9/+68
| | | | Guenther
* Interesting C compiler you have there... :-)Volker Lendecke2009-02-191-1/+1
|
* s3: re-run make samba3-idl.Günther Deschner2009-02-193-6/+122
| | | | Guenther
* spoolss: add spoolss_PortData2 (used by vista).Günther Deschner2009-02-191-0/+17
| | | | Guenther
* spoolss: use spoolss access mask in OpenPrinter{Ex}.Günther Deschner2009-02-191-2/+2
| | | | Guenther
* Fix coverity CID-602. Possible use of uninitialized var.Jeremy Allison2009-02-181-1/+1
| | | | Jeremy.
* s4-smbtorture: enable spoolss_AddPrinterDriverEx ndr test.Günther Deschner2009-02-181-1/+1
| | | | Guenther
* s3: re-run make samba3-idl.Günther Deschner2009-02-185-64/+1886
| | | | Guenther
* spoolss: fix idl for spoolss_AddPrinterDriver and spoolss_AddPrinterDriverEx.Günther Deschner2009-02-181-6/+9
| | | | Guenther
* spoolss: add spoolss_AddDriverInfo8 (used by vista for adding drivers).Günther Deschner2009-02-181-0/+34
| | | | Guenther
* s3-spoolss: remove old spoolss_XcvData.Günther Deschner2009-02-184-234/+0
| | | | Guenther
* s3-spoolss: use pidl for _spoolss_XcvData.Günther Deschner2009-02-183-84/+113
| | | | Guenther
* s3: re-run make samba3-idl.Günther Deschner2009-02-182-13/+14
| | | | Guenther
* spoolss: fix spoolss_MonitorUi struct.Günther Deschner2009-02-181-1/+1
| | | | Guenther
* s3: re-run make samba3-idl.Günther Deschner2009-02-183-0/+178
| | | | Guenther
* spoolss: add spoolss_MonitorUi struct.Günther Deschner2009-02-181-0/+4
| | | | Guenther
* spoolss: add spoolss_PortData1.Günther Deschner2009-02-181-0/+24
| | | | Guenther
* tevent: add tevent_wakeup_send/recv()Stefan Metzmacher2009-02-183-1/+76
| | | | | | This can be used as tevent_req based timer event. metze
* tevent: rename tevent_req_set_timeout() => tevent_req_set_endtime()Stefan Metzmacher2009-02-182-2/+2
| | | | | | This makes more clear what the function does. metze
* s4:netlogon: don't mix in and out negotiate_flags in ↵Stefan Metzmacher2009-02-181-3/+4
| | | | | | dcesrv_netr_ServerAuthenticate() metze
* Merge branch 'master' of ssh://git.samba.org/data/git/samba into master-develAndrew Bartlett2009-02-188-11/+69
|\
| * Worked around a problem with select/poll/epoll and gnutls Andrew Tridgell2009-02-185-1/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Our packet layer relies on the event system reliably telling us when a packet is available. When we are using a socket layer like TLS then things get a bit trickier, as there may be bytes in the encryption buffer which could be read even if there are no bytes at the socket level. The GNUTLS library is supposed to prevent this happening by always leaving some data at the socket level when there is data to be processed in its buffers, but it seems that this is not always reliable. To work around this I have added a new packet option packet_set_unreliable_select() which tells the packet layer to not assume that the socket layer has a reliable select, and to instead keep trying to read from the socket until it gets back no data. This option is set for the ldap client and server when TLS is negotiated. This seems to fix the problems with the ldaps tests.
| * fixed some of the TLS problemsAndrew Tridgell2009-02-183-10/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | This fixes two things in the TLS support for Samba4. The first is to use a somewhat more correct hostname instead of 'Samba' when generating the test certificates. That allows TLS test clients (such as gnutls-cli) to connect to Samba4 using auto-generated certificates. The second fix is to add a call to gcry_control() to tell gcrypt to use /dev/urandom instead of /dev/random (on systems that support that). That means that test certificate generation is now very fast, which was previously an impediment to putting the TLS tests on the build farm.
* | paper over failure to reprovision with os.unlink()Andrew Bartlett2009-02-181-1/+2
|/ | | | | | | We need to figure out why the deletes on the database fail, but for now doing an unlink of templates_tdb isn't too bad. Andrew Bartlett
* Don't miss an absolute pathname as a kerberos keytab path. From Glenn Machin ↵Jeremy Allison2009-02-171-0/+5
| | | | | | <gmachin@sandia.gov>. Jeremy.
* Fix bug #6117 - Samba 3.3.0: pdbedit -a core dumps.Jeremy Allison2009-02-171-1/+12
| | | | Jeremy.
* Fix warning about missmatch of uint32_t and size_t.Jeremy Allison2009-02-171-1/+1
| | | | Jeremy.
* docs: extend the example in the idmp_rid manpage to configure 2 domains with ridMichael Adam2009-02-171-1/+13
| | | | Michael
* docs: extend the idmap_rid manpageMichael Adam2009-02-171-5/+24
| | | | Michael
* s3:winbindd: make do_async_domain() static.Michael Adam2009-02-172-12/+6
| | | | Michael
* s3:build: improve the check for a working krb5-config.Michael Adam2009-02-171-1/+1
| | | | | | | | | | | Not only check if it exists and is executable, but also check whether it accepts the command line "krb5-config --libs gssapi". Chris Hoogendyk <hoogendyk@bio.umass.edu> has reported configure failing on a Solaris machine due to krb5-config raising errors on these options. Michael
* s4-smbtorture: fix spoolss test after count out,ref idl changes.Günther Deschner2009-02-173-10/+38
| | | | Guenther
* s4-spoolss: fix spoolss server after out,ref count pointer changes.Günther Deschner2009-02-172-15/+14
| | | | Guenther
* spoolss: fix spoolss helper for out ref count pointer.Günther Deschner2009-02-171-2/+4
| | | | Guenther
* s3: re-run make samba3-idl.Günther Deschner2009-02-175-112/+294
| | | | Guenther
* spoolss: in enum-calls make [out] count a ref pointer.Günther Deschner2009-02-171-28/+28
| | | | Guenther
* s3-spoolss: remove old spoolss_ResetPrinter.Günther Deschner2009-02-173-62/+0
| | | | Guenther
* s3-spoolss: use pidl for _spoolss_ResetPrinter.Günther Deschner2009-02-172-38/+10
| | | | Guenther
* s3: re-run make samba3-idl.Günther Deschner2009-02-174-0/+80
| | | | Guenther
* spoolss: fill in spoolss_ResetPrinter.Günther Deschner2009-02-171-1/+4
| | | | Guenther