summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* ldb: Bump version to 2.1.4ldb-2.1.4Gary Lockyer2020-06-253-1/+287
* CVE-2020-10730: lib ldb: Check if ldb_lock_backend_callback called twiceGary Lockyer2020-06-251-1/+8
* CVE-2020-10730: s4 dsdb vlv_pagination: Prevent repeat call of ldb_module_doneGary Lockyer2020-06-251-12/+49
* CVE-2020-10730: s4 dsdb paged_results: Prevent repeat call of ldb_module_doneGary Lockyer2020-06-251-9/+34
* CVE-2020-10730: dsdb: Ban the combination of paged_results and VLVAndrew Bartlett2020-06-251-0/+10
* CVE-2020-10730: dsdb: Fix crash when vlv and paged_results are combinedAndrew Bartlett2020-06-251-0/+4
* CVE-2020-10730: selftest: Add test to show that VLV and paged_results are inc...Andrew Bartlett2020-06-252-0/+50
* CVE-2020-10730: vlv: Another workaround for mixing ASQ and VLVAndrew Bartlett2020-06-251-4/+15
* CVE-2020-10730: selftest: Add test to confirm VLV interaction with ASQAndrew Bartlett2020-06-251-0/+27
* CVE-2020-10730: vlv: Do not re-ASQ search the results of an ASQ search with VLVAndrew Bartlett2020-06-251-0/+11
* CVE-2020-10730: vlv: Use strcmp(), not strncmp() checking the NULL terminated...Andrew Bartlett2020-06-251-2/+2
* VERSION: Bump version up to 4.12.4...Karolin Seeger2020-06-251-2/+2
* VERSION: Disable GIT_SNAPSHOT for the 4.12.3 release.samba-4.12.3Karolin Seeger2020-05-191-1/+1
* WHATSNEW: Add release notes for Samba 4.12.3.Karolin Seeger2020-05-191-5/+90
* docs-xml: Fix usernames in pam_winbind manpagesAndreas Schneider2020-05-142-4/+4
* libsmb: Protect cli_oem_change_password() from rprcnt<2Volker Lendecke2020-05-141-0/+6
* libsmb: Protect cli_RNetServerEnum against rprcnt<6Volker Lendecke2020-05-141-0/+7
* libsmb: Protect cli_RNetShareEnum() against rprcnt<6Volker Lendecke2020-05-141-0/+5
* libsmb: Fix indentation in cli_RNetShareEnum()Volker Lendecke2020-05-141-64/+69
* s3/locking: prime flags in a fresh sharemode data objectRalph Boehme2020-05-141-0/+3
* smbd: fix for bug 14375Ralph Boehme2020-05-142-3/+7
* smbd: make conflicting_access available to other functionsRalph Boehme2020-05-141-6/+7
* s4/torture: reproducer for bug 14375Ralph Boehme2020-05-142-0/+115
* selftest: split a knownfail entryRalph Boehme2020-05-141-1/+2
* s3: RPC: Don't crash on trying to talloc_free(-1) if smb_iconv_open_ex() fails.Jeremy Allison2020-05-141-4/+7
* vfs_io_uring: retry after a short writes in vfs_io_uring_pwrite_completion()Stefan Metzmacher2020-05-141-2/+22
* vfs_io_uring: retry after a short read in vfs_io_uring_pread_completion()Stefan Metzmacher2020-05-141-2/+22
* vfs_io_uring: protect vfs_io_uring_fsync_completion() against invalid resultsStefan Metzmacher2020-05-141-0/+7
* vfs_io_uring: protect vfs_io_uring_pwrite_completion() against invalid resultsStefan Metzmacher2020-05-141-0/+13
* vfs_io_uring: protect vfs_io_uring_pread_completion() against invalid resultsStefan Metzmacher2020-05-141-0/+14
* vfs_io_uring: split out a vfs_io_uring_pwrite_submit() functionStefan Metzmacher2020-05-141-5/+15
* vfs_io_uring: split out a vfs_io_uring_pread_submit() functionStefan Metzmacher2020-05-141-5/+15
* vfs_io_uring: split out a vfs_io_uring_request_submit() functionStefan Metzmacher2020-05-141-15/+14
* vfs_io_uring: avoid stack recursion of vfs_io_uring_queue_run()Stefan Metzmacher2020-05-141-1/+92
* vfs_io_uring: make use of sys_valid_io_range() in vfs_io_uring_pwrite_send()Stefan Metzmacher2020-05-141-0/+7
* vfs_io_uring: make use of sys_valid_io_range() in vfs_io_uring_pread_send()Stefan Metzmacher2020-05-141-0/+8
* vfs_io_uring: move error handling out of vfs_io_uring_fsync_recv()Stefan Metzmacher2020-05-141-10/+11
* vfs_io_uring: move error handling out of vfs_io_uring_pwrite_recv()Stefan Metzmacher2020-05-141-9/+17
* vfs_io_uring: move error handling out of vfs_io_uring_pread_recv()Stefan Metzmacher2020-05-141-9/+17
* vfs_io_uring: introduce vfs_io_uring_request->completion_fn()Stefan Metzmacher2020-05-141-1/+48
* vfs_io_uring: replace vfs_io_uring_request->state with _tevent_req_data()Stefan Metzmacher2020-05-141-6/+4
* vfs_io_uring: fix the prefix for parametric options from 'vfs_io_uring' to 'i...Stefan Metzmacher2020-05-141-2/+2
* s3: VFS: default. Change pwrite() -> sys_pwrite_full() in SMB_VFS_PWRITE_SEND...Jeremy Allison2020-05-141-4/+4
* s3: VFS: default. Change pread() -> sys_pread_full() in SMB_VFS_PREAD_SEND() ...Jeremy Allison2020-05-141-4/+4
* s3: VFS: default. Change sys_pwrite() -> sys_pwrite_full() in SMB_VFS_PWRITE(...Jeremy Allison2020-05-141-1/+1
* s3: VFS: default. Change sys_pread() -> sys_pread_full() in SMB_VFS_PREAD() t...Jeremy Allison2020-05-141-1/+1
* s3: VFS: aio_fork: Change sys_pwrite() -> sys_pwrite_full() to protect agains...Jeremy Allison2020-05-141-1/+1
* s3: VFS: aio_fork: Change sys_pread() -> sys_pread_full() to protect against ...Jeremy Allison2020-05-141-1/+1
* smbd: add vfs_valid_{pread,pwrite}_range() checks where neededStefan Metzmacher2020-05-145-4/+73
* s3:smbd: add vfs_valid_{pread,pwrite}_range() helper functionsStefan Metzmacher2020-05-142-0/+34