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.
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
,
38 unsigned int allow
= GPFS_SHARE_NONE
;
39 unsigned int deny
= GPFS_DENY_NONE
;
42 if (gpfs_set_share_fn
== NULL
) {
46 if ((fsp
== NULL
) || (fsp
->fh
== NULL
) || (fsp
->fh
->fd
< 0)) {
47 /* No real file, don't disturb */
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
)) ?
56 if (allow
== GPFS_SHARE_NONE
) {
57 DEBUG(10, ("special case am=no_access:%x\n",access_mask
));
60 deny
|= (share_access
& (FILE_SHARE_WRITE
|FILE_SHARE_DELETE
)) ?
62 deny
|= (share_access
& (FILE_SHARE_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
);
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"));
75 DEBUG(10, ("gpfs_set_share failed: %s\n",
83 int set_gpfs_lease(int fd
, int leasetype
)
85 int gpfs_type
= GPFS_LEASE_NONE
;
87 if (gpfs_set_lease_fn
== NULL
) {
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
) {
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
) {
118 return gpfs_putacl_fn(pathname
, flags
, acl
);
123 if (libgpfs_handle
!= NULL
) {
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",
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
145 gpfs_set_share_fn
= NULL
;
146 gpfs_set_lease_fn
= NULL
;
147 gpfs_getacl_fn
= NULL
;
148 gpfs_putacl_fn
= NULL
;
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
160 gpfs_set_share_fn
= NULL
;
161 gpfs_set_lease_fn
= NULL
;
162 gpfs_getacl_fn
= NULL
;
163 gpfs_putacl_fn
= NULL
;
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 "
171 sys_dlclose(libgpfs_handle
);
173 /* leave libgpfs_handle != NULL around, no point
175 gpfs_set_share_fn
= NULL
;
176 gpfs_set_lease_fn
= NULL
;
177 gpfs_getacl_fn
= NULL
;
178 gpfs_putacl_fn
= NULL
;
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 "
186 sys_dlclose(libgpfs_handle
);
188 /* leave libgpfs_handle != NULL around, no point
190 gpfs_set_share_fn
= NULL
;
191 gpfs_set_lease_fn
= NULL
;
192 gpfs_getacl_fn
= NULL
;
193 gpfs_putacl_fn
= NULL
;
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. */
211 BOOL
set_gpfs_sharemode(files_struct
*fsp
, uint32 access_mask
,
214 DEBUG(0, ("VFS module - smbgpfs.so loaded, without gpfs support compiled\n"));
215 /* Don't disturb but complain */
219 int smbd_gpfs_getacl(char *pathname
, int flags
, void *acl
)
225 int smbd_gpfs_putacl(char *pathname
, int flags
, void *acl
)
236 #endif /* HAVE_GPFS */