Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-05-27 | Gna, how long do I program in C now??? :-) | Volker Lendecke | 1 | -2/+2 | |
2009-05-26 | Attempt to fix the build on HP/UX | Volker Lendecke | 1 | -0/+10 | |
2009-05-26 | Attempt to fix the build on NetBSD | Volker Lendecke | 1 | -0/+3 | |
2009-05-26 | Revert "s3: fix build on systems with struct stat member st_flags" | Björn Jacke | 1 | -3/+0 | |
for a cleaner and more complete patch that Volker has in the queue :-) | |||||
2009-05-26 | s3: fix build on systems with struct stat member st_flags | Björn Jacke | 1 | -0/+3 | |
2009-05-26 | Introduce "struct stat_ex" as a replacement for SMB_STRUCT_STAT | Volker Lendecke | 1 | -7/+26 | |
This patch introduces struct stat_ex { dev_t st_ex_dev; ino_t st_ex_ino; mode_t st_ex_mode; nlink_t st_ex_nlink; uid_t st_ex_uid; gid_t st_ex_gid; dev_t st_ex_rdev; off_t st_ex_size; struct timespec st_ex_atime; struct timespec st_ex_mtime; struct timespec st_ex_ctime; struct timespec st_ex_btime; /* birthtime */ blksize_t st_ex_blksize; blkcnt_t st_ex_blocks; }; typedef struct stat_ex SMB_STRUCT_STAT; It is really large because due to the friendly libc headers playing macro tricks with fields like st_ino, so I renamed them to st_ex_xxx. Why this change? To support birthtime, we already have quite a few #ifdef's at places where it does not really belong. With a stat struct that we control, we can consolidate the nanosecond timestamps and the birthtime deep in the VFS stat calls. At this moment it is triggered by a request to support the birthtime field for GPFS. GPFS does not extend the system level struct stat, but instead has a separate call that gets us the additional information beyond posix. Without being able to do that within the VFS stat calls, that support would have to be scattered around the main smbd code. It will very likely break all the onefs modules, but I think the changes will be reasonably easy to do. | |||||
2009-04-21 | Move the security_descriptor utility code to the top-level. | Jelmer Vernooij | 1 | -0/+1 | |
2009-04-20 | Move some libgpo files to root. | Jelmer Vernooij | 1 | -1/+1 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2009-04-10 | Link in the threads functions, not yet used. | Jeremy Allison | 1 | -0/+2 | |
Jeremy. | |||||
2009-04-08 | Remove async_req | Volker Lendecke | 1 | -1/+0 | |
2009-04-07 | s3:kerberos Rework smb_krb5_unparse_name() to take a talloc context | Andrew Bartlett | 1 | -3/+4 | |
Signed-off-by: Günther Deschner <gd@samba.org> | |||||
2009-03-23 | s3:libsmb: add a much simplified smb_siging infrastructure | Stefan Metzmacher | 1 | -0/+1 | |
It's the job of the caller to maintain the seqnum/mid mapping. Hopefully we can use this code in s4 later too. metze | |||||
2009-03-18 | s3-spoolss: remove include/rpc_spoolss.h. | Günther Deschner | 1 | -1/+0 | |
Guenther | |||||
2009-03-03 | lib/util: remove samba specific talloc_get_type_abort() | Stefan Metzmacher | 1 | -4/+0 | |
metze | |||||
2009-03-01 | Use shared header file for character sets, remove old definitions from ↵ | Jelmer Vernooij | 1 | -1/+1 | |
samba3 smb.h. | |||||
2009-03-01 | Add header files for secace and secacl. | Jelmer Vernooij | 1 | -0/+2 | |
2009-03-01 | Keep using Samba3's charset.h for now. | Jelmer Vernooij | 1 | -1/+1 | |
2009-03-01 | Sync smb_iconv_t type, convert_string return type with Samba 3 equivalents. | Jelmer Vernooij | 1 | -1/+1 | |
2009-02-26 | Add tevent_req helpers to includes.h | Volker Lendecke | 1 | -0/+2 | |
2009-02-24 | s3: remove unused smb_ldap.h | Stefan Metzmacher | 1 | -2/+0 | |
metze | |||||
2009-02-23 | prefer gssapi header files from subdirectory | Björn Jacke | 1 | -3/+3 | |
this fixes some compile time noise on FreeBSD 7 | |||||
2009-02-18 | S3: Allow SMBD processes to survive in low memory condidtions | todd stecher | 1 | -0/+4 | |
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. | |||||
2009-02-13 | Fix the build. When you do "make distclean; ./autogen; ./configure; make" ↵ | Jeremy Allison | 1 | -0/+2 | |
and it still doesn't build you know it's messed up. Jeremy. | |||||
2009-02-12 | [Bug 6069] Add a fstatvfs function for libsmbclient | Derrell Lipman | 1 | -0/+1 | |
- port functionality from v3_3_test to master Derrell | |||||
2009-02-12 | today valgrind is available on 64bit Linux, too | Björn Jacke | 1 | -4/+1 | |
2009-02-09 | S3: New module interface for SMB message statistics gathering | todd stecher | 1 | -0/+1 | |
This changelist allows for the addition of custom performance monitoring modules through smb.conf. Entrypoints in the main message processing code have been added to capture the command, subop, ioctl, identity and message size statistics. | |||||
2009-02-09 | Revert "s3/s4: Move CONST_DISCARD into lib/util so it's available from s3 ↵ | Jelmer Vernooij | 1 | -0/+2 | |
and s4" lib/util already has discard_const_p. This reverts commit 0cb430c22e9c0af2248fbc15ce97a4d760df189d. | |||||
2009-02-05 | s3-lsa: move remaining lsa policy access_mask defines to idl. | Günther Deschner | 1 | -1/+0 | |
Guenther | |||||
2009-02-04 | s3-eventlog: w00t! remove last traces of old eventlog rpc marshalling. | Günther Deschner | 1 | -1/+0 | |
spoolss, I'm coming! Guenther | |||||
2009-02-01 | Add two new parameters to control how we verify kerberos tickets. Removes ↵ | Dan Sledz | 1 | -1/+18 | |
lp_use_kerberos_keytab parameter. The first is "kerberos method" and replaces the "use kerberos keytab" with an enum. Valid options are: secrets only - use only the secrets for ticket verification (default) system keytab - use only the system keytab for ticket verification dedicated keytab - use a dedicated keytab for ticket verification. secrets and keytab - use the secrets.tdb first, then the system keytab For existing installs: "use kerberos keytab = yes" corresponds to secrets and keytab "use kerberos keytab = no" corresponds to secrets only The major difference between "system keytab" and "dedicated keytab" is that the latter method relies on kerberos to find the correct keytab entry instead of filtering based on expected principals. The second parameter is "dedicated keytab file", which is the keytab to use when in "dedicated keytab" mode. This keytab is only used in ads_verify_ticket. | |||||
2009-02-01 | Split up async_req into a generic and a NTSTATUS specific part | Volker Lendecke | 1 | -1/+1 | |
2009-01-28 | async_sock: Move to top level | Kai Blin | 1 | -1/+1 | |
2009-01-27 | s3:smbd: make mdns registration event driven. | Stefan Metzmacher | 1 | -14/+0 | |
metze | |||||
2009-01-27 | async_req: Fix the S4 build | Kai Blin | 1 | -1/+1 | |
2009-01-21 | s3:libsmbconf: remove the init headers from smbconf.h | Michael Adam | 1 | -0/+3 | |
give the smbconf_init() dispatcher and the backends (smbconf_reg and smbconf_txt) a header of their own each. This allows to use the basic infrastructure and single backends individually. Michael | |||||
2009-01-15 | s3: make better use of ccache by not including version.h in every C-file. | Michael Adam | 1 | -1/+0 | |
version.h changes rather frequently. Since it is included via includes.h, this means each C file will be a cache miss. This applies to the following situations: * When building a new package with a new Samba version * building in a git branch after calling mkversion.sh after a new commit (i.e. virtually always) This patch improves the situation in the following way: * remove inlude "version.h" from includes.h * Use samba_version_string() instead of SAMBA_VERSION_STRING in files that use no other macro from version.h instead of SAMBA_VERSION_STRING. * explicitly include "version.h" in those files that use more macros from "version.h" than just SAMBA_VERSION_STRING. Michael | |||||
2009-01-09 | s3-svcctl: remove last traces of hand-marshalled svcctl code. | Günther Deschner | 1 | -1/+0 | |
Guenther | |||||
2009-01-05 | Merge branch 'master' of ssh://git.samba.org/data/git/samba | Jelmer Vernooij | 1 | -1/+2 | |
2009-01-05 | s3:events: move prototypes to event.h | Stefan Metzmacher | 1 | -1/+2 | |
metze | |||||
2009-01-01 | Add iconv_convenience argument to size functions. | Jelmer Vernooij | 1 | -1/+0 | |
2008-12-30 | s3/s4: Move CONST_DISCARD into lib/util so it's available from s3 and s4 | Tim Prouty | 1 | -2/+0 | |
2008-12-17 | s3-ntsvcs: remove last traces of hand-marshalled NTSVCS. | Günther Deschner | 1 | -1/+0 | |
Guenther | |||||
2008-11-20 | s3-eventlog: move non rpc eventlog headers to own include file. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2008-11-02 | Remove global_loadparm stub in Samba 3 as it's no longer used. | Jelmer Vernooij | 1 | -1/+0 | |
2008-11-02 | Samba3: Remove more configure tests already done by libreplace. | Jelmer Vernooij | 1 | -8/+0 | |
2008-11-02 | Remove MIN, MAX, slprintf, vslprintf defines already provided by libreplace. | Jelmer Vernooij | 1 | -14/+1 | |
2008-11-02 | Remove another use of global_loadparm. | Jelmer Vernooij | 1 | -0/+1 | |
Eventually, we should move some of these parameters into a separate struct (perhaps into smb_transport_options?), to avoid the long lists of parameters. | |||||
2008-11-01 | Samba3: Include util.h header file rather than having custom prototypes. | Jelmer Vernooij | 1 | -0/+2 | |
2008-10-24 | Revert Samba3 back to using its own charset handling code. | Jelmer Vernooij | 1 | -1/+1 | |
2008-10-24 | Remove more uses of global_loadparm. | Jelmer Vernooij | 1 | -1/+1 | |