gpfs: Introduce wrapper for gpfs_set_times_path
[samba.git] / source3 / modules / gpfs.c
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  Provide a connection to GPFS specific features
4  *  Copyright (C) Volker Lendecke 2005
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 #include "includes.h"
21 #include "system/filesys.h"
22 #include "smbd/smbd.h"
23
24 #include <fcntl.h>
25 #include <gpfs_fcntl.h>
26 #include "libcli/security/security.h"
27 #include "vfs_gpfs.h"
28
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 type);
31 static int (*gpfs_getacl_fn)(char *pathname, int flags, void *acl);
32 static int (*gpfs_putacl_fn)(char *pathname, int flags, void *acl);
33 static int (*gpfs_get_realfilename_path_fn)(char *pathname, char *filenamep,
34                                             int *len);
35 static int (*gpfs_set_winattrs_path_fn)(char *pathname, int flags,
36                                         struct gpfs_winattr *attrs);
37 static int (*gpfs_get_winattrs_path_fn)(char *pathname,
38                                         struct gpfs_winattr *attrs);
39 static int (*gpfs_get_winattrs_fn)(int fd, struct gpfs_winattr *attrs);
40 static int (*gpfs_prealloc_fn)(int fd, gpfs_off64_t start, gpfs_off64_t bytes);
41 static int (*gpfs_ftruncate_fn)(int fd, gpfs_off64_t length);
42 static int (*gpfs_lib_init_fn)(int flags);
43 static int (*gpfs_set_times_path_fn)(char *pathname, int flags,
44                                      gpfs_timestruc_t times[4]);
45 static int (*gpfs_quotactl_fn)(char *pathname, int cmd, int id, void *bufferP);
46 static int (*gpfs_fcntl_fn)(gpfs_file_t fileDesc, void *fcntlArgP);
47 static int (*gpfs_getfilesetid_fn)(char *pathname, char *name, int *idP);
48
49 int gpfswrap_init(void)
50 {
51         static void *l;
52
53         if (l != NULL) {
54                 return 0;
55         }
56
57         l = dlopen("libgpfs.so", RTLD_LAZY);
58         if (l == NULL) {
59                 return -1;
60         }
61
62         gpfs_set_share_fn             = dlsym(l, "gpfs_set_share");
63         gpfs_set_lease_fn             = dlsym(l, "gpfs_set_lease");
64         gpfs_getacl_fn                = dlsym(l, "gpfs_getacl");
65         gpfs_putacl_fn                = dlsym(l, "gpfs_putacl");
66         gpfs_get_realfilename_path_fn = dlsym(l, "gpfs_get_realfilename_path");
67         gpfs_set_winattrs_path_fn     = dlsym(l, "gpfs_set_winattrs_path");
68         gpfs_get_winattrs_path_fn     = dlsym(l, "gpfs_get_winattrs_path");
69         gpfs_get_winattrs_fn          = dlsym(l, "gpfs_get_winattrs");
70         gpfs_prealloc_fn              = dlsym(l, "gpfs_prealloc");
71         gpfs_ftruncate_fn             = dlsym(l, "gpfs_ftruncate");
72         gpfs_lib_init_fn              = dlsym(l, "gpfs_lib_init");
73         gpfs_set_times_path_fn        = dlsym(l, "gpfs_set_times_path");
74         gpfs_quotactl_fn              = dlsym(l, "gpfs_quotactl");
75         gpfs_fcntl_fn                 = dlsym(l, "gpfs_fcntl");
76         gpfs_getfilesetid_fn          = dlsym(l, "gpfs_getfilesetid");
77
78         return 0;
79 }
80
81 int gpfswrap_set_share(int fd, unsigned int allow, unsigned int deny)
82 {
83         if (gpfs_set_share_fn == NULL) {
84                 errno = ENOSYS;
85                 return -1;
86         }
87
88         return gpfs_set_share_fn(fd, allow, deny);
89 }
90
91 int gpfswrap_set_lease(int fd, unsigned int type)
92 {
93         if (gpfs_set_lease_fn == NULL) {
94                 errno = ENOSYS;
95                 return -1;
96         }
97
98         return gpfs_set_lease_fn(fd, type);
99 }
100
101 int gpfswrap_getacl(char *pathname, int flags, void *acl)
102 {
103         if (gpfs_getacl_fn == NULL) {
104                 errno = ENOSYS;
105                 return -1;
106         }
107
108         return gpfs_getacl_fn(pathname, flags, acl);
109 }
110
111 int gpfswrap_putacl(char *pathname, int flags, void *acl)
112 {
113         if (gpfs_putacl_fn == NULL) {
114                 errno = ENOSYS;
115                 return -1;
116         }
117
118         return gpfs_putacl_fn(pathname, flags, acl);
119 }
120
121 int gpfswrap_get_realfilename_path(char *pathname, char *filenamep, int *len)
122 {
123         if (gpfs_get_realfilename_path_fn == NULL) {
124                 errno = ENOSYS;
125                 return -1;
126         }
127
128         return gpfs_get_realfilename_path_fn(pathname, filenamep, len);
129 }
130
131 int gpfswrap_set_winattrs_path(char *pathname, int flags,
132                                struct gpfs_winattr *attrs)
133 {
134         if (gpfs_set_winattrs_path_fn == NULL) {
135                 errno = ENOSYS;
136                 return -1;
137         }
138
139         return gpfs_set_winattrs_path_fn(pathname, flags, attrs);
140 }
141
142 int gpfswrap_get_winattrs_path(char *pathname, struct gpfs_winattr *attrs)
143 {
144         if (gpfs_get_winattrs_path_fn == NULL) {
145                 errno = ENOSYS;
146                 return -1;
147         }
148
149         return gpfs_get_winattrs_path_fn(pathname, attrs);
150 }
151
152 int gpfswrap_get_winattrs(int fd, struct gpfs_winattr *attrs)
153 {
154         if (gpfs_get_winattrs_fn == NULL) {
155                 errno = ENOSYS;
156                 return -1;
157         }
158
159         return gpfs_get_winattrs_fn(fd, attrs);
160 }
161
162 int gpfswrap_prealloc(int fd, gpfs_off64_t start, gpfs_off64_t bytes)
163 {
164         if (gpfs_prealloc_fn == NULL) {
165                 errno = ENOSYS;
166                 return -1;
167         }
168
169         return gpfs_prealloc_fn(fd, start, bytes);
170 }
171
172 int gpfswrap_ftruncate(int fd, gpfs_off64_t length)
173 {
174         if (gpfs_ftruncate_fn == NULL) {
175                 errno = ENOSYS;
176                 return -1;
177         }
178
179         return gpfs_ftruncate_fn(fd, length);
180 }
181
182 int gpfswrap_lib_init(int flags)
183 {
184         if (gpfs_lib_init_fn == NULL) {
185                 errno = ENOSYS;
186                 return -1;
187         }
188
189         return gpfs_lib_init_fn(flags);
190 }
191
192 int gpfswrap_set_times_path(char *pathname, int flags,
193                             gpfs_timestruc_t times[4])
194 {
195         if (gpfs_set_times_path_fn == NULL) {
196                 errno = ENOSYS;
197                 return -1;
198         }
199
200         return gpfs_set_times_path_fn(pathname, flags, times);
201 }
202
203 bool set_gpfs_sharemode(files_struct *fsp, uint32 access_mask,
204                         uint32 share_access)
205 {
206         unsigned int allow = GPFS_SHARE_NONE;
207         unsigned int deny = GPFS_DENY_NONE;
208         int result;
209
210         if ((fsp == NULL) || (fsp->fh == NULL) || (fsp->fh->fd < 0)) {
211                 /* No real file, don't disturb */
212                 return True;
213         }
214
215         allow |= (access_mask & (FILE_WRITE_DATA|FILE_APPEND_DATA|
216                                  DELETE_ACCESS)) ? GPFS_SHARE_WRITE : 0;
217         allow |= (access_mask & (FILE_READ_DATA|FILE_EXECUTE)) ?
218                 GPFS_SHARE_READ : 0;
219
220         if (allow == GPFS_SHARE_NONE) {
221                 DEBUG(10, ("special case am=no_access:%x\n",access_mask));
222         }
223         else {  
224                 deny |= (share_access & FILE_SHARE_WRITE) ?
225                         0 : GPFS_DENY_WRITE;
226                 deny |= (share_access & (FILE_SHARE_READ)) ?
227                         0 : GPFS_DENY_READ;
228         }
229         DEBUG(10, ("am=%x, allow=%d, sa=%x, deny=%d\n",
230                    access_mask, allow, share_access, deny));
231
232         result = gpfswrap_set_share(fsp->fh->fd, allow, deny);
233         if (result != 0) {
234                 if (errno == ENOSYS) {
235                         DEBUG(5, ("VFS module vfs_gpfs loaded, but gpfs "
236                                   "set_share function support not available. "
237                                   "Allowing access\n"));
238                         return True;
239                 } else {
240                         DEBUG(10, ("gpfs_set_share failed: %s\n",
241                                    strerror(errno)));
242                 }
243         }
244
245         return (result == 0);
246 }
247
248 int set_gpfs_lease(int fd, int leasetype)
249 {
250         int gpfs_type = GPFS_LEASE_NONE;
251
252         if (leasetype == F_RDLCK) {
253                 gpfs_type = GPFS_LEASE_READ;
254         }
255         if (leasetype == F_WRLCK) {
256                 gpfs_type = GPFS_LEASE_WRITE;
257         }
258
259         /* we unconditionally set CAP_LEASE, rather than looking for
260            -1/EACCES as there is a bug in some versions of
261            libgpfs_gpl.so which results in a leaked fd on /dev/ss0
262            each time we try this with the wrong capabilities set
263         */
264         linux_set_lease_capability();
265         return gpfswrap_set_lease(fd, gpfs_type);
266 }
267
268 int get_gpfs_quota(const char *pathname, int type, int id,
269                    struct gpfs_quotaInfo *qi)
270 {
271         int ret;
272
273         if (!gpfs_quotactl_fn) {
274                 errno = ENOSYS;
275                 return -1;
276         }
277
278         ZERO_STRUCTP(qi);
279         ret = gpfs_quotactl_fn(discard_const_p(char, pathname),
280                                GPFS_QCMD(Q_GETQUOTA, type), id, qi);
281
282         if (ret) {
283                 if (errno == GPFS_E_NO_QUOTA_INST) {
284                         DEBUG(10, ("Quotas disabled on GPFS filesystem.\n"));
285                 } else {
286                         DEBUG(0, ("Get quota failed, type %d, id, %d, "
287                                   "errno %d.\n", type, id, errno));
288                 }
289
290                 return ret;
291         }
292
293         DEBUG(10, ("quota type %d, id %d, blk u:%lld h:%lld s:%lld gt:%u\n",
294                    type, id, qi->blockUsage, qi->blockHardLimit,
295                    qi->blockSoftLimit, qi->blockGraceTime));
296
297         return ret;
298 }
299
300 int get_gpfs_fset_id(const char *pathname, int *fset_id)
301 {
302         int err, fd, errno_fcntl;
303
304         struct {
305                 gpfsFcntlHeader_t hdr;
306                 gpfsGetFilesetName_t fsn;
307         } arg;
308
309         if (!gpfs_fcntl_fn || !gpfs_getfilesetid_fn) {
310                 errno = ENOSYS;
311                 return -1;
312         }
313
314         arg.hdr.totalLength = sizeof(arg);
315         arg.hdr.fcntlVersion = GPFS_FCNTL_CURRENT_VERSION;
316         arg.hdr.fcntlReserved = 0;
317         arg.fsn.structLen = sizeof(arg.fsn);
318         arg.fsn.structType = GPFS_FCNTL_GET_FILESETNAME;
319
320         fd = open(pathname, O_RDONLY);
321         if (fd == -1) {
322                 DEBUG(1, ("Could not open %s: %s\n",
323                           pathname, strerror(errno)));
324                 return fd;
325         }
326
327         err = gpfs_fcntl_fn(fd, &arg);
328         errno_fcntl = errno;
329         close(fd);
330
331         if (err) {
332                 errno = errno_fcntl;
333                 DEBUG(1, ("GPFS_FCNTL_GET_FILESETNAME for %s failed: %s\n",
334                           pathname, strerror(errno)));
335                 return err;
336         }
337
338         err = gpfs_getfilesetid_fn(discard_const_p(char, pathname),
339                                    arg.fsn.buffer, fset_id);
340         if (err) {
341                 DEBUG(1, ("gpfs_getfilesetid for %s failed: %s\n",
342                           pathname, strerror(errno)));
343         }
344         return err;
345 }
346
347 static void timespec_to_gpfs_time(struct timespec ts, gpfs_timestruc_t *gt,
348                                   int idx, int *flags)
349 {
350         if (!null_timespec(ts)) {
351                 *flags |= 1 << idx;
352                 gt[idx].tv_sec = ts.tv_sec;
353                 gt[idx].tv_nsec = ts.tv_nsec;
354                 DEBUG(10, ("Setting GPFS time %d, flags 0x%x\n", idx, *flags));
355         }
356 }
357
358 int smbd_gpfs_set_times_path(char *path, struct smb_file_time *ft)
359 {
360         gpfs_timestruc_t gpfs_times[4];
361         int flags = 0;
362         int rc;
363
364         ZERO_ARRAY(gpfs_times);
365         timespec_to_gpfs_time(ft->atime, gpfs_times, 0, &flags);
366         timespec_to_gpfs_time(ft->mtime, gpfs_times, 1, &flags);
367         /* No good mapping from LastChangeTime to ctime, not storing */
368         timespec_to_gpfs_time(ft->create_time, gpfs_times, 3, &flags);
369
370         if (!flags) {
371                 DEBUG(10, ("nothing to do, return to avoid EINVAL\n"));
372                 return 0;
373         }
374
375         rc = gpfswrap_set_times_path(path, flags, gpfs_times);
376
377         if (rc != 0 && errno != ENOSYS) {
378                 DEBUG(1,("gpfs_set_times() returned with error %s\n",
379                         strerror(errno)));
380         }
381
382         return rc;
383 }