[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / modules / gpfs.c
blob19050ad3ca5c2996a9cb3fcf6b2a68c6bc885be1
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 2 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, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
23 #ifdef HAVE_GPFS
25 #include "gpfs_gpl.h"
27 static void *libgpfs_handle = NULL;
29 static int (*gpfs_set_share_fn)(int fd, unsigned int allow, unsigned int deny);
30 static int (*gpfs_set_lease_fn)(int fd, unsigned int leaseType);
31 static int (*gpfs_getacl_fn)(char *pathname, int flags, void *acl);
32 static int (*gpfs_putacl_fn)(char *pathname, int flags, void *acl);
35 BOOL set_gpfs_sharemode(files_struct *fsp, uint32 access_mask,
36 uint32 share_access)
38 unsigned int allow = GPFS_SHARE_NONE;
39 unsigned int deny = GPFS_DENY_NONE;
40 int result;
42 if (gpfs_set_share_fn == NULL) {
43 return False;
46 if ((fsp == NULL) || (fsp->fh == NULL) || (fsp->fh->fd < 0)) {
47 /* No real file, don't disturb */
48 return True;
51 allow |= (access_mask & (FILE_WRITE_DATA|FILE_APPEND_DATA|
52 DELETE_ACCESS)) ? GPFS_SHARE_WRITE : 0;
53 allow |= (access_mask & (FILE_READ_DATA|FILE_EXECUTE)) ?
54 GPFS_SHARE_READ : 0;
56 if (allow == GPFS_SHARE_NONE) {
57 DEBUG(10, ("special case am=no_access:%x\n",access_mask));
59 else {
60 deny |= (share_access & FILE_SHARE_WRITE) ?
61 0 : GPFS_DENY_WRITE;
62 deny |= (share_access & (FILE_SHARE_READ)) ?
63 0 : GPFS_DENY_READ;
65 DEBUG(10, ("am=%x, allow=%d, sa=%x, deny=%d\n",
66 access_mask, allow, share_access, deny));
68 result = gpfs_set_share_fn(fsp->fh->fd, allow, deny);
69 if (result != 0) {
70 if (errno == ENOSYS) {
71 DEBUG(5, ("VFS module vfs_gpfs loaded, but no gpfs "
72 "support has been compiled into Samba. Allowing access\n"));
73 return True;
74 } else {
75 DEBUG(10, ("gpfs_set_share failed: %s\n",
76 strerror(errno)));
80 return (result == 0);
83 int set_gpfs_lease(int fd, int leasetype)
85 int gpfs_type = GPFS_LEASE_NONE;
87 if (gpfs_set_lease_fn == NULL) {
88 errno = EINVAL;
89 return -1;
92 if (leasetype == F_RDLCK) {
93 gpfs_type = GPFS_LEASE_READ;
95 if (leasetype == F_WRLCK) {
96 gpfs_type = GPFS_LEASE_WRITE;
98 return gpfs_set_lease_fn(fd, gpfs_type);
101 int smbd_gpfs_getacl(char *pathname, int flags, void *acl)
103 if (gpfs_getacl_fn == NULL) {
104 errno = ENOSYS;
105 return -1;
108 return gpfs_getacl_fn(pathname, flags, acl);
111 int smbd_gpfs_putacl(char *pathname, int flags, void *acl)
113 if (gpfs_putacl_fn == NULL) {
114 errno = ENOSYS;
115 return -1;
118 return gpfs_putacl_fn(pathname, flags, acl);
121 void init_gpfs(void)
123 if (libgpfs_handle != NULL) {
124 return;
127 libgpfs_handle = sys_dlopen("libgpfs_gpl.so", RTLD_LAZY);
129 if (libgpfs_handle == NULL) {
130 DEBUG(10, ("sys_dlopen for libgpfs_gpl failed: %s\n",
131 strerror(errno)));
132 return;
135 DEBUG(10, ("libgpfs_gpl.so loaded\n"));
137 gpfs_set_share_fn = sys_dlsym(libgpfs_handle, "gpfs_set_share");
138 if (gpfs_set_share_fn == NULL) {
139 DEBUG(3, ("libgpfs_gpl.so does not contain the symbol "
140 "'gpfs_set_share'\n"));
141 sys_dlclose(libgpfs_handle);
143 /* leave libgpfs_handle != NULL around, no point
144 in trying twice */
145 gpfs_set_share_fn = NULL;
146 gpfs_set_lease_fn = NULL;
147 gpfs_getacl_fn = NULL;
148 gpfs_putacl_fn = NULL;
149 return;
152 gpfs_set_lease_fn = sys_dlsym(libgpfs_handle, "gpfs_set_lease");
153 if (gpfs_set_lease_fn == NULL) {
154 DEBUG(3, ("libgpfs_gpl.so does not contain the symbol "
155 "'gpfs_set_lease'\n"));
156 sys_dlclose(libgpfs_handle);
158 /* leave libgpfs_handle != NULL around, no point
159 in trying twice */
160 gpfs_set_share_fn = NULL;
161 gpfs_set_lease_fn = NULL;
162 gpfs_getacl_fn = NULL;
163 gpfs_putacl_fn = NULL;
164 return;
167 gpfs_getacl_fn = sys_dlsym(libgpfs_handle, "gpfs_getacl");
168 if (gpfs_getacl_fn == NULL) {
169 DEBUG(3, ("libgpfs_gpl.so does not contain the symbol "
170 "'gpfs_getacl'\n"));
171 sys_dlclose(libgpfs_handle);
173 /* leave libgpfs_handle != NULL around, no point
174 in trying twice */
175 gpfs_set_share_fn = NULL;
176 gpfs_set_lease_fn = NULL;
177 gpfs_getacl_fn = NULL;
178 gpfs_putacl_fn = NULL;
179 return;
182 gpfs_putacl_fn = sys_dlsym(libgpfs_handle, "gpfs_putacl");
183 if (gpfs_putacl_fn == NULL) {
184 DEBUG(3, ("libgpfs_gpl.so does not contain the symbol "
185 "'gpfs_putacl'\n"));
186 sys_dlclose(libgpfs_handle);
188 /* leave libgpfs_handle != NULL around, no point
189 in trying twice */
190 gpfs_set_share_fn = NULL;
191 gpfs_set_lease_fn = NULL;
192 gpfs_getacl_fn = NULL;
193 gpfs_putacl_fn = NULL;
194 return;
199 #else
201 int set_gpfs_lease(int snum, int leasetype)
203 DEBUG(0, ("'VFS module smbgpfs loaded, without gpfs support compiled\n"));
205 /* We need to indicate that no GPFS is around by returning ENOSYS, so
206 * that the normal linux kernel oplock code is called. */
207 errno = ENOSYS;
208 return -1;
211 BOOL set_gpfs_sharemode(files_struct *fsp, uint32 access_mask,
212 uint32 share_access)
214 DEBUG(0, ("VFS module - smbgpfs.so loaded, without gpfs support compiled\n"));
215 /* Don't disturb but complain */
216 return True;
219 int smbd_gpfs_getacl(char *pathname, int flags, void *acl)
221 errno = ENOSYS;
222 return -1;
225 int smbd_gpfs_putacl(char *pathname, int flags, void *acl)
227 errno = ENOSYS;
228 return -1;
231 void init_gpfs(void)
233 return;
236 #endif /* HAVE_GPFS */