Document the try_first_pass option in the pam_winbind manpage.
[Samba.git] / source / modules / gpfs.c
blob11869d86a815e3fc2c3f70035f8ebee29eff08ed
1 /*
2 * Unix SMB/CIFS implementation.
3 * Provide a connection to GPFS specific features
4 * Copyright (C) Volker Lendecke 2005
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
22 #ifdef HAVE_GPFS
24 #include "gpfs_gpl.h"
25 #include "vfs_gpfs.h"
27 static bool gpfs_share_modes;
28 static bool gpfs_leases;
30 static int (*gpfs_set_share_fn)(int fd, unsigned int allow, unsigned int deny);
31 static int (*gpfs_set_lease_fn)(int fd, unsigned int leaseType);
32 static int (*gpfs_getacl_fn)(char *pathname, int flags, void *acl);
33 static int (*gpfs_putacl_fn)(char *pathname, int flags, void *acl);
36 bool set_gpfs_sharemode(files_struct *fsp, uint32 access_mask,
37 uint32 share_access)
39 unsigned int allow = GPFS_SHARE_NONE;
40 unsigned int deny = GPFS_DENY_NONE;
41 int result;
43 if (!gpfs_share_modes) {
44 return True;
47 if (gpfs_set_share_fn == NULL) {
48 return False;
51 if ((fsp == NULL) || (fsp->fh == NULL) || (fsp->fh->fd < 0)) {
52 /* No real file, don't disturb */
53 return True;
56 allow |= (access_mask & (FILE_WRITE_DATA|FILE_APPEND_DATA|
57 DELETE_ACCESS)) ? GPFS_SHARE_WRITE : 0;
58 allow |= (access_mask & (FILE_READ_DATA|FILE_EXECUTE)) ?
59 GPFS_SHARE_READ : 0;
61 if (allow == GPFS_SHARE_NONE) {
62 DEBUG(10, ("special case am=no_access:%x\n",access_mask));
64 else {
65 deny |= (share_access & FILE_SHARE_WRITE) ?
66 0 : GPFS_DENY_WRITE;
67 deny |= (share_access & (FILE_SHARE_READ)) ?
68 0 : GPFS_DENY_READ;
70 DEBUG(10, ("am=%x, allow=%d, sa=%x, deny=%d\n",
71 access_mask, allow, share_access, deny));
73 result = gpfs_set_share_fn(fsp->fh->fd, allow, deny);
74 if (result != 0) {
75 if (errno == ENOSYS) {
76 DEBUG(5, ("VFS module vfs_gpfs loaded, but no gpfs "
77 "support has been compiled into Samba. Allowing access\n"));
78 return True;
79 } else {
80 DEBUG(10, ("gpfs_set_share failed: %s\n",
81 strerror(errno)));
85 return (result == 0);
88 int set_gpfs_lease(int fd, int leasetype)
90 int gpfs_type = GPFS_LEASE_NONE;
92 if (!gpfs_leases) {
93 return True;
96 if (gpfs_set_lease_fn == NULL) {
97 errno = EINVAL;
98 return -1;
101 if (leasetype == F_RDLCK) {
102 gpfs_type = GPFS_LEASE_READ;
104 if (leasetype == F_WRLCK) {
105 gpfs_type = GPFS_LEASE_WRITE;
108 /* we unconditionally set CAP_LEASE, rather than looking for
109 -1/EACCES as there is a bug in some versions of
110 libgpfs_gpl.so which results in a leaked fd on /dev/ss0
111 each time we try this with the wrong capabilities set
113 linux_set_lease_capability();
114 return gpfs_set_lease_fn(fd, gpfs_type);
117 int smbd_gpfs_getacl(char *pathname, int flags, void *acl)
119 if (gpfs_getacl_fn == NULL) {
120 errno = ENOSYS;
121 return -1;
124 return gpfs_getacl_fn(pathname, flags, acl);
127 int smbd_gpfs_putacl(char *pathname, int flags, void *acl)
129 if (gpfs_putacl_fn == NULL) {
130 errno = ENOSYS;
131 return -1;
134 return gpfs_putacl_fn(pathname, flags, acl);
137 static bool init_gpfs_function_lib(void *plibhandle_pointer,
138 const char *libname,
139 void *pfn_pointer, const char *fn_name)
141 bool did_open_here = false;
142 void **libhandle_pointer = (void **)plibhandle_pointer;
143 void **fn_pointer = (void **)pfn_pointer;
145 if (*libhandle_pointer == NULL) {
146 *libhandle_pointer = sys_dlopen(libname, RTLD_LAZY);
147 did_open_here = true;
149 if (*libhandle_pointer == NULL) {
150 DEBUG(10, ("Could not open lib %s\n", libname));
151 return false;
154 *fn_pointer = sys_dlsym(*libhandle_pointer, fn_name);
155 if (*fn_pointer == NULL) {
156 DEBUG(10, ("Did not find symbol %s in lib %s\n",
157 fn_name, libname));
158 if (did_open_here) {
159 sys_dlclose(*libhandle_pointer);
160 *libhandle_pointer = NULL;
162 return false;
165 return true;
168 static bool init_gpfs_function(void *fn_pointer, const char *fn_name)
170 static void *libgpfs_handle = NULL;
171 static void *libgpfs_gpl_handle = NULL;
173 if (init_gpfs_function_lib(&libgpfs_handle, "libgpfs.so",
174 fn_pointer, fn_name)) {
175 return true;
177 if (init_gpfs_function_lib(&libgpfs_gpl_handle, "libgpfs_gpl.so",
178 fn_pointer, fn_name)) {
179 return true;
181 return false;
184 void init_gpfs(void)
186 init_gpfs_function(&gpfs_set_share_fn, "gpfs_set_share");
187 init_gpfs_function(&gpfs_set_lease_fn, "gpfs_set_lease");
188 init_gpfs_function(&gpfs_getacl_fn, "gpfs_getacl");
189 init_gpfs_function(&gpfs_putacl_fn, "gpfs_putacl");
191 gpfs_share_modes = lp_parm_bool(-1, "gpfs", "sharemodes", True);
192 gpfs_leases = lp_parm_bool(-1, "gpfs", "leases", True);
194 return;
197 #else
199 int set_gpfs_lease(int snum, int leasetype)
201 DEBUG(0, ("'VFS module smbgpfs loaded, without gpfs support compiled\n"));
203 /* We need to indicate that no GPFS is around by returning ENOSYS, so
204 * that the normal linux kernel oplock code is called. */
205 errno = ENOSYS;
206 return -1;
209 bool set_gpfs_sharemode(files_struct *fsp, uint32 access_mask,
210 uint32 share_access)
212 DEBUG(0, ("VFS module - smbgpfs.so loaded, without gpfs support compiled\n"));
213 /* Don't disturb but complain */
214 return True;
217 int smbd_gpfs_getacl(char *pathname, int flags, void *acl)
219 errno = ENOSYS;
220 return -1;
223 int smbd_gpfs_putacl(char *pathname, int flags, void *acl)
225 errno = ENOSYS;
226 return -1;
229 void init_gpfs(void)
231 return;
234 #endif /* HAVE_GPFS */