vfs: Remove name-based SMB_VFS_GET_REAL_FILENAME()
[samba.git] / source3 / modules / vfs_gpfs.c
1 /*
2  *  Unix SMB/CIFS implementation.
3  *  Samba VFS module for GPFS filesystem
4  *  Copyright (C) Christian Ambach <cambach1@de.ibm.com> 2006
5  *  Copyright (C) Christof Schmitt 2015
6  *  Major code contributions by Chetan Shringarpure <chetan.sh@in.ibm.com>
7  *                           and Gomati Mohanan <gomati.mohanan@in.ibm.com>
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 3 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, see <http://www.gnu.org/licenses/>.
21  */
22
23 #include "includes.h"
24 #include "smbd/smbd.h"
25 #include "include/smbprofile.h"
26 #include "modules/non_posix_acls.h"
27 #include "libcli/security/security.h"
28 #include "nfs4_acls.h"
29 #include "system/filesys.h"
30 #include "auth.h"
31 #include "lib/util/tevent_unix.h"
32 #include "lib/util/gpfswrap.h"
33
34 #include <gnutls/gnutls.h>
35 #include <gnutls/crypto.h>
36 #include "lib/crypto/gnutls_helpers.h"
37
38 #undef DBGC_CLASS
39 #define DBGC_CLASS DBGC_VFS
40
41 #ifndef GPFS_GETACL_NATIVE
42 #define GPFS_GETACL_NATIVE 0x00000004
43 #endif
44
45 struct gpfs_config_data {
46         struct smbacl4_vfs_params nfs4_params;
47         bool sharemodes;
48         bool leases;
49         bool hsm;
50         bool syncio;
51         bool winattr;
52         bool ftruncate;
53         bool getrealfilename;
54         bool dfreequota;
55         bool acl;
56         bool settimes;
57         bool recalls;
58         struct {
59                 bool gpfs_fstat_x;
60         } pathref_ok;
61 };
62
63 struct gpfs_fsp_extension {
64         bool offline;
65 };
66
67 static inline unsigned int gpfs_acl_flags(gpfs_acl_t *gacl)
68 {
69         if (gacl->acl_level == GPFS_ACL_LEVEL_V4FLAGS) {
70                 return gacl->v4Level1.acl_flags;
71         }
72         return 0;
73 }
74
75 static inline gpfs_ace_v4_t *gpfs_ace_ptr(gpfs_acl_t *gacl, unsigned int i)
76 {
77         if (gacl->acl_level == GPFS_ACL_LEVEL_V4FLAGS) {
78                 return &gacl->v4Level1.ace_v4[i];
79         }
80         return &gacl->ace_v4[i];
81 }
82
83 static unsigned int vfs_gpfs_access_mask_to_allow(uint32_t access_mask)
84 {
85         unsigned int allow = GPFS_SHARE_NONE;
86
87         if (access_mask & (FILE_WRITE_DATA|FILE_APPEND_DATA)) {
88                 allow |= GPFS_SHARE_WRITE;
89         }
90         if (access_mask & (FILE_READ_DATA|FILE_EXECUTE)) {
91                 allow |= GPFS_SHARE_READ;
92         }
93
94         return allow;
95 }
96
97 static unsigned int vfs_gpfs_share_access_to_deny(uint32_t share_access)
98 {
99         unsigned int deny = GPFS_DENY_NONE;
100
101         if (!(share_access & FILE_SHARE_WRITE)) {
102                 deny |= GPFS_DENY_WRITE;
103         }
104         if (!(share_access & FILE_SHARE_READ)) {
105                 deny |= GPFS_DENY_READ;
106         }
107
108         /*
109          * GPFS_DENY_DELETE can only be set together with either
110          * GPFS_DENY_WRITE or GPFS_DENY_READ.
111          */
112         if ((deny & (GPFS_DENY_WRITE|GPFS_DENY_READ)) &&
113             !(share_access & FILE_SHARE_DELETE)) {
114                 deny |= GPFS_DENY_DELETE;
115         }
116
117         return deny;
118 }
119
120 static int set_gpfs_sharemode(files_struct *fsp, uint32_t access_mask,
121                               uint32_t share_access)
122 {
123         unsigned int allow = GPFS_SHARE_NONE;
124         unsigned int deny = GPFS_DENY_NONE;
125         int result;
126
127         if (access_mask == 0) {
128                 DBG_DEBUG("Clearing file system share mode.\n");
129         } else {
130                 allow = vfs_gpfs_access_mask_to_allow(access_mask);
131                 deny = vfs_gpfs_share_access_to_deny(share_access);
132         }
133         DBG_DEBUG("access_mask=0x%x, allow=0x%x, share_access=0x%x, "
134                   "deny=0x%x\n", access_mask, allow, share_access, deny);
135
136         result = gpfswrap_set_share(fsp_get_io_fd(fsp), allow, deny);
137         if (result == 0) {
138                 return 0;
139         }
140
141         if (errno == EACCES) {
142                 DBG_NOTICE("GPFS share mode denied for %s/%s.\n",
143                            fsp->conn->connectpath,
144                            fsp->fsp_name->base_name);
145         } else if (errno == EPERM) {
146                 DBG_ERR("Samba requested GPFS sharemode for %s/%s, but the "
147                         "GPFS file system is not configured accordingly. "
148                         "Configure file system with mmchfs -D nfs4 or "
149                         "set gpfs:sharemodes=no in Samba.\n",
150                         fsp->conn->connectpath,
151                         fsp->fsp_name->base_name);
152         } else {
153                 DBG_ERR("gpfs_set_share failed: %s\n", strerror(errno));
154         }
155
156         return result;
157 }
158
159 static int vfs_gpfs_filesystem_sharemode(vfs_handle_struct *handle,
160                                          files_struct *fsp,
161                                          uint32_t share_access,
162                                          uint32_t access_mask)
163 {
164
165         struct gpfs_config_data *config;
166         int ret = 0;
167
168         SMB_VFS_HANDLE_GET_DATA(handle, config,
169                                 struct gpfs_config_data,
170                                 return -1);
171
172         if(!config->sharemodes) {
173                 return 0;
174         }
175
176         /*
177          * A named stream fsp will have the basefile open in the fsp
178          * fd, so lacking a distinct fd for the stream we have to skip
179          * set_gpfs_sharemode for stream.
180          */
181         if (fsp_is_alternate_stream(fsp)) {
182                 DBG_NOTICE("Not requesting GPFS sharemode on stream: %s/%s\n",
183                            fsp->conn->connectpath,
184                            fsp_str_dbg(fsp));
185                 return 0;
186         }
187
188         ret = set_gpfs_sharemode(fsp, access_mask, share_access);
189
190         return ret;
191 }
192
193 static int vfs_gpfs_close(vfs_handle_struct *handle, files_struct *fsp)
194 {
195
196         struct gpfs_config_data *config;
197
198         SMB_VFS_HANDLE_GET_DATA(handle, config,
199                                 struct gpfs_config_data,
200                                 return -1);
201
202         if (config->sharemodes &&
203             (fsp->fsp_flags.kernel_share_modes_taken))
204         {
205                 /*
206                  * Always clear GPFS sharemode in case the actual
207                  * close gets deferred due to outstanding POSIX locks
208                  * (see fd_close_posix)
209                  */
210                 int ret = gpfswrap_set_share(fsp_get_io_fd(fsp), 0, 0);
211                 if (ret != 0) {
212                         DBG_ERR("Clearing GPFS sharemode on close failed for "
213                                 " %s/%s: %s\n",
214                                 fsp->conn->connectpath,
215                                 fsp->fsp_name->base_name,
216                                 strerror(errno));
217                 }
218         }
219
220         return SMB_VFS_NEXT_CLOSE(handle, fsp);
221 }
222
223 #ifdef HAVE_KERNEL_OPLOCKS_LINUX
224 static int lease_type_to_gpfs(int leasetype)
225 {
226         if (leasetype == F_RDLCK) {
227                 return GPFS_LEASE_READ;
228         }
229
230         if (leasetype == F_WRLCK) {
231                 return GPFS_LEASE_WRITE;
232         }
233
234         return GPFS_LEASE_NONE;
235 }
236
237 static int vfs_gpfs_setlease(vfs_handle_struct *handle,
238                              files_struct *fsp,
239                              int leasetype)
240 {
241         struct gpfs_config_data *config;
242         int ret=0;
243
244         START_PROFILE(syscall_linux_setlease);
245
246         SMB_VFS_HANDLE_GET_DATA(handle, config,
247                                 struct gpfs_config_data,
248                                 return -1);
249
250         ret = linux_set_lease_sighandler(fsp_get_io_fd(fsp));
251         if (ret == -1) {
252                 goto failure;
253         }
254
255         if (config->leases) {
256                 int gpfs_lease_type = lease_type_to_gpfs(leasetype);
257                 int saved_errno = 0;
258
259                 /*
260                  * Ensure the lease owner is root to allow
261                  * correct delivery of lease-break signals.
262                  */
263                 become_root();
264                 ret = gpfswrap_set_lease(fsp_get_io_fd(fsp), gpfs_lease_type);
265                 if (ret < 0) {
266                         saved_errno = errno;
267                 }
268                 unbecome_root();
269
270                 if (saved_errno != 0) {
271                         errno = saved_errno;
272                 }
273         }
274
275 failure:
276         END_PROFILE(syscall_linux_setlease);
277
278         return ret;
279 }
280
281 #else /* HAVE_KERNEL_OPLOCKS_LINUX */
282
283 static int vfs_gpfs_setlease(vfs_handle_struct *handle,
284                                 files_struct *fsp,
285                                 int leasetype)
286 {
287         return ENOSYS;
288 }
289 #endif /* HAVE_KERNEL_OPLOCKS_LINUX */
290
291 static NTSTATUS vfs_gpfs_get_real_filename_at(struct vfs_handle_struct *handle,
292                                               struct files_struct *dirfsp,
293                                               const char *name,
294                                               TALLOC_CTX *mem_ctx,
295                                               char **found_name)
296 {
297         int result;
298         char *full_path = NULL;
299         char *to_free = NULL;
300         char real_pathname[PATH_MAX+1], tmpbuf[PATH_MAX];
301         size_t full_path_len;
302         int buflen;
303         bool mangled;
304         struct gpfs_config_data *config;
305
306         SMB_VFS_HANDLE_GET_DATA(handle, config,
307                                 struct gpfs_config_data,
308                                 return NT_STATUS_INTERNAL_ERROR);
309
310         if (!config->getrealfilename) {
311                 return SMB_VFS_NEXT_GET_REAL_FILENAME_AT(
312                         handle, dirfsp, name, mem_ctx, found_name);
313         }
314
315         mangled = mangle_is_mangled(name, handle->conn->params);
316         if (mangled) {
317                 return SMB_VFS_NEXT_GET_REAL_FILENAME_AT(
318                         handle, dirfsp, name, mem_ctx, found_name);
319         }
320
321         full_path_len = full_path_tos(dirfsp->fsp_name->base_name, name,
322                                       tmpbuf, sizeof(tmpbuf),
323                                       &full_path, &to_free);
324         if (full_path_len == -1) {
325                 return NT_STATUS_NO_MEMORY;
326         }
327
328         buflen = sizeof(real_pathname) - 1;
329
330         result = gpfswrap_get_realfilename_path(full_path, real_pathname,
331                                                 &buflen);
332
333         TALLOC_FREE(to_free);
334
335         if ((result == -1) && (errno == ENOSYS)) {
336                 return SMB_VFS_NEXT_GET_REAL_FILENAME_AT(
337                         handle, dirfsp, name, mem_ctx, found_name);
338         }
339
340         if (result == -1) {
341                 DEBUG(10, ("smbd_gpfs_get_realfilename_path returned %s\n",
342                            strerror(errno)));
343                 return map_nt_error_from_unix(errno);
344         }
345
346         /*
347          * GPFS does not necessarily null-terminate the returned path
348          * but instead returns the buffer length in buflen.
349          */
350
351         if (buflen < sizeof(real_pathname)) {
352                 real_pathname[buflen] = '\0';
353         } else {
354                 real_pathname[sizeof(real_pathname)-1] = '\0';
355         }
356
357         DBG_DEBUG("%s/%s -> %s\n",
358                   fsp_str_dbg(dirfsp),
359                   name,
360                   real_pathname);
361
362         name = strrchr_m(real_pathname, '/');
363         if (name == NULL) {
364                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
365         }
366
367         *found_name = talloc_strdup(mem_ctx, name+1);
368         if (*found_name == NULL) {
369                 return NT_STATUS_NO_MEMORY;
370         }
371
372         return NT_STATUS_OK;
373 }
374
375 static void sd2gpfs_control(uint16_t control, struct gpfs_acl *gacl)
376 {
377         unsigned int gpfs_aclflags = 0;
378         control &= SEC_DESC_DACL_PROTECTED | SEC_DESC_SACL_PROTECTED |
379                 SEC_DESC_DACL_AUTO_INHERITED | SEC_DESC_SACL_AUTO_INHERITED |
380                 SEC_DESC_DACL_DEFAULTED | SEC_DESC_SACL_DEFAULTED |
381                 SEC_DESC_DACL_PRESENT | SEC_DESC_SACL_PRESENT;
382         gpfs_aclflags = control << 8;
383         if (!(control & SEC_DESC_DACL_PRESENT))
384                 gpfs_aclflags |= ACL4_FLAG_NULL_DACL;
385         if (!(control & SEC_DESC_SACL_PRESENT))
386                 gpfs_aclflags |= ACL4_FLAG_NULL_SACL;
387         gacl->acl_level = GPFS_ACL_LEVEL_V4FLAGS;
388         gacl->v4Level1.acl_flags = gpfs_aclflags;
389 }
390
391 static uint16_t gpfs2sd_control(unsigned int gpfs_aclflags)
392 {
393         uint16_t control = gpfs_aclflags >> 8;
394         control &= SEC_DESC_DACL_PROTECTED | SEC_DESC_SACL_PROTECTED |
395                 SEC_DESC_DACL_AUTO_INHERITED | SEC_DESC_SACL_AUTO_INHERITED |
396                 SEC_DESC_DACL_DEFAULTED | SEC_DESC_SACL_DEFAULTED |
397                 SEC_DESC_DACL_PRESENT | SEC_DESC_SACL_PRESENT;
398         control |= SEC_DESC_SELF_RELATIVE;
399         return control;
400 }
401
402 static void gpfs_dumpacl(int level, struct gpfs_acl *gacl)
403 {
404         gpfs_aclCount_t i;
405         if (gacl==NULL)
406         {
407                 DEBUG(0, ("gpfs acl is NULL\n"));
408                 return;
409         }
410
411         DEBUG(level, ("len: %d, level: %d, version: %d, nace: %d, "
412                       "control: %x\n",
413                       gacl->acl_len, gacl->acl_level, gacl->acl_version,
414                       gacl->acl_nace, gpfs_acl_flags(gacl)));
415
416         for(i=0; i<gacl->acl_nace; i++)
417         {
418                 struct gpfs_ace_v4 *gace = gpfs_ace_ptr(gacl, i);
419                 DEBUG(level, ("\tace[%d]: type:%d, flags:0x%x, mask:0x%x, "
420                               "iflags:0x%x, who:%u\n",
421                               i, gace->aceType, gace->aceFlags, gace->aceMask,
422                               gace->aceIFlags, gace->aceWho));
423         }
424 }
425
426 static int gpfs_getacl_with_capability(const char *fname, int flags, void *buf)
427 {
428         int ret, saved_errno;
429
430         set_effective_capability(DAC_OVERRIDE_CAPABILITY);
431
432         ret = gpfswrap_getacl(fname, flags, buf);
433         saved_errno = errno;
434
435         drop_effective_capability(DAC_OVERRIDE_CAPABILITY);
436
437         errno = saved_errno;
438         return ret;
439 }
440
441 /*
442  * get the ACL from GPFS, allocated on the specified mem_ctx
443  * internally retries when initial buffer was too small
444  *
445  * caller needs to cast result to either
446  * raw = yes: struct gpfs_opaque_acl
447  * raw = no: struct gpfs_acl
448  *
449  */
450 static void *vfs_gpfs_getacl(TALLOC_CTX *mem_ctx,
451                          const char *fname,
452                          const bool raw,
453                          const gpfs_aclType_t type)
454 {
455
456         void *aclbuf;
457         size_t size = 512;
458         int ret, flags;
459         unsigned int *len;
460         size_t struct_size;
461         bool use_capability = false;
462
463 again:
464
465         aclbuf = talloc_zero_size(mem_ctx, size);
466         if (aclbuf == NULL) {
467                 errno = ENOMEM;
468                 return NULL;
469         }
470
471         if (raw) {
472                 struct gpfs_opaque_acl *buf = (struct gpfs_opaque_acl *) aclbuf;
473                 buf->acl_type = type;
474                 flags = GPFS_GETACL_NATIVE;
475                 len = (unsigned int *) &(buf->acl_buffer_len);
476                 struct_size = sizeof(struct gpfs_opaque_acl);
477         } else {
478                 struct gpfs_acl *buf = (struct gpfs_acl *) aclbuf;
479                 buf->acl_type = type;
480                 buf->acl_level = GPFS_ACL_LEVEL_V4FLAGS;
481                 flags = GPFS_GETACL_STRUCT;
482                 len = &(buf->acl_len);
483                 /* reserve space for control flags in gpfs 3.5 and beyond */
484                 struct_size = sizeof(struct gpfs_acl) + sizeof(unsigned int);
485         }
486
487         /* set the length of the buffer as input value */
488         *len = size;
489
490         if (use_capability) {
491                 ret = gpfs_getacl_with_capability(fname, flags, aclbuf);
492         } else {
493                 ret = gpfswrap_getacl(fname, flags, aclbuf);
494                 if ((ret != 0) && (errno == EACCES)) {
495                         DBG_DEBUG("Retry with DAC capability for %s\n", fname);
496                         use_capability = true;
497                         ret = gpfs_getacl_with_capability(fname, flags, aclbuf);
498                 }
499         }
500
501         if ((ret != 0) && (errno == ENOSPC)) {
502                 /*
503                  * get the size needed to accommodate the complete buffer
504                  *
505                  * the value returned only applies to the ACL blob in the
506                  * struct so make sure to also have headroom for the first
507                  * struct members by adding room for the complete struct
508                  * (might be a few bytes too much then)
509                  */
510                 size = *len + struct_size;
511                 talloc_free(aclbuf);
512                 DEBUG(10, ("Increasing ACL buffer size to %zu\n", size));
513                 goto again;
514         }
515
516         if (ret != 0) {
517                 DEBUG(5, ("smbd_gpfs_getacl failed with %s\n",
518                           strerror(errno)));
519                 talloc_free(aclbuf);
520                 return NULL;
521         }
522
523         return aclbuf;
524 }
525
526 /* Tries to get nfs4 acls and returns SMB ACL allocated.
527  * On failure returns 1 if it got non-NFSv4 ACL to prompt 
528  * retry with POSIX ACL checks.
529  * On failure returns -1 if there is system (GPFS) error, check errno.
530  * Returns 0 on success
531  */
532 static int gpfs_get_nfs4_acl(TALLOC_CTX *mem_ctx, const char *fname,
533                              struct SMB4ACL_T **ppacl)
534 {
535         gpfs_aclCount_t i;
536         struct gpfs_acl *gacl = NULL;
537         DEBUG(10, ("gpfs_get_nfs4_acl invoked for %s\n", fname));
538
539         /* Get the ACL */
540         gacl = (struct gpfs_acl*) vfs_gpfs_getacl(talloc_tos(), fname,
541                                                   false, 0);
542         if (gacl == NULL) {
543                 DEBUG(9, ("gpfs_getacl failed for %s with %s\n",
544                            fname, strerror(errno)));
545                 if (errno == ENODATA) {
546                         /*
547                          * GPFS returns ENODATA for snapshot
548                          * directories. Retry with POSIX ACLs check.
549                          */
550                         return 1;
551                 }
552
553                 return -1;
554         }
555
556         if (gacl->acl_type != GPFS_ACL_TYPE_NFS4) {
557                 DEBUG(10, ("Got non-nfsv4 acl\n"));
558                 /* Retry with POSIX ACLs check */
559                 talloc_free(gacl);
560                 return 1;
561         }
562
563         *ppacl = smb_create_smb4acl(mem_ctx);
564
565         if (gacl->acl_level == GPFS_ACL_LEVEL_V4FLAGS) {
566                 uint16_t control = gpfs2sd_control(gpfs_acl_flags(gacl));
567                 smbacl4_set_controlflags(*ppacl, control);
568         }
569
570         DEBUG(10, ("len: %d, level: %d, version: %d, nace: %d, control: %x\n",
571                    gacl->acl_len, gacl->acl_level, gacl->acl_version,
572                    gacl->acl_nace, gpfs_acl_flags(gacl)));
573
574         for (i=0; i<gacl->acl_nace; i++) {
575                 struct gpfs_ace_v4 *gace = gpfs_ace_ptr(gacl, i);
576                 SMB_ACE4PROP_T smbace = { 0 };
577                 DEBUG(10, ("type: %d, iflags: %x, flags: %x, mask: %x, "
578                            "who: %d\n", gace->aceType, gace->aceIFlags,
579                            gace->aceFlags, gace->aceMask, gace->aceWho));
580
581                 if (gace->aceIFlags & ACE4_IFLAG_SPECIAL_ID) {
582                         smbace.flags |= SMB_ACE4_ID_SPECIAL;
583                         switch (gace->aceWho) {
584                         case ACE4_SPECIAL_OWNER:
585                                 smbace.who.special_id = SMB_ACE4_WHO_OWNER;
586                                 break;
587                         case ACE4_SPECIAL_GROUP:
588                                 smbace.who.special_id = SMB_ACE4_WHO_GROUP;
589                                 break;
590                         case ACE4_SPECIAL_EVERYONE:
591                                 smbace.who.special_id = SMB_ACE4_WHO_EVERYONE;
592                                 break;
593                         default:
594                                 DEBUG(8, ("invalid special gpfs id %d "
595                                           "ignored\n", gace->aceWho));
596                                 continue; /* don't add it */
597                         }
598                 } else {
599                         if (gace->aceFlags & ACE4_FLAG_GROUP_ID)
600                                 smbace.who.gid = gace->aceWho;
601                         else
602                                 smbace.who.uid = gace->aceWho;
603                 }
604
605                 /* remove redundant deny entries */
606                 if (i > 0 && gace->aceType == SMB_ACE4_ACCESS_DENIED_ACE_TYPE) {
607                         struct gpfs_ace_v4 *prev = gpfs_ace_ptr(gacl, i - 1);
608                         if (prev->aceType == SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE &&
609                             prev->aceFlags == gace->aceFlags &&
610                             prev->aceIFlags == gace->aceIFlags &&
611                             (gace->aceMask & prev->aceMask) == 0 &&
612                             gace->aceWho == prev->aceWho) {
613                                 /* it's redundant - skip it */
614                                 continue;
615                         }
616                 }
617
618                 smbace.aceType = gace->aceType;
619                 smbace.aceFlags = gace->aceFlags;
620                 smbace.aceMask = gace->aceMask;
621                 smb_add_ace4(*ppacl, &smbace);
622         }
623
624         talloc_free(gacl);
625
626         return 0;
627 }
628
629 static NTSTATUS gpfsacl_fget_nt_acl(vfs_handle_struct *handle,
630         files_struct *fsp, uint32_t security_info,
631         TALLOC_CTX *mem_ctx,
632         struct security_descriptor **ppdesc)
633 {
634         struct SMB4ACL_T *pacl = NULL;
635         int     result;
636         struct gpfs_config_data *config;
637         TALLOC_CTX *frame = talloc_stackframe();
638         NTSTATUS status;
639
640         *ppdesc = NULL;
641
642         SMB_VFS_HANDLE_GET_DATA(handle, config,
643                                 struct gpfs_config_data,
644                                 return NT_STATUS_INTERNAL_ERROR);
645
646         if (!config->acl) {
647                 status = SMB_VFS_NEXT_FGET_NT_ACL(handle, fsp, security_info,
648                                                   mem_ctx, ppdesc);
649                 TALLOC_FREE(frame);
650                 return status;
651         }
652
653         result = gpfs_get_nfs4_acl(frame, fsp->fsp_name->base_name, &pacl);
654
655         if (result == 0) {
656                 status = smb_fget_nt_acl_nfs4(fsp, &config->nfs4_params,
657                                               security_info,
658                                               mem_ctx, ppdesc, pacl);
659                 TALLOC_FREE(frame);
660                 return status;
661         }
662
663         if (result > 0) {
664                 DEBUG(10, ("retrying with posix acl...\n"));
665                 status = posix_fget_nt_acl(fsp, security_info,
666                                            mem_ctx, ppdesc);
667                 TALLOC_FREE(frame);
668                 return status;
669         }
670
671         TALLOC_FREE(frame);
672
673         /* GPFS ACL was not read, something wrong happened, error code is set in errno */
674         return map_nt_error_from_unix(errno);
675 }
676
677 static bool vfs_gpfs_nfs4_ace_to_gpfs_ace(SMB_ACE4PROP_T *nfs4_ace,
678                                           struct gpfs_ace_v4 *gace,
679                                           uid_t owner_uid)
680 {
681         gace->aceType = nfs4_ace->aceType;
682         gace->aceFlags = nfs4_ace->aceFlags;
683         gace->aceMask = nfs4_ace->aceMask;
684
685         if (nfs4_ace->flags & SMB_ACE4_ID_SPECIAL) {
686                 switch(nfs4_ace->who.special_id) {
687                 case SMB_ACE4_WHO_EVERYONE:
688                         gace->aceIFlags = ACE4_IFLAG_SPECIAL_ID;
689                         gace->aceWho = ACE4_SPECIAL_EVERYONE;
690                         break;
691                 case SMB_ACE4_WHO_OWNER:
692                         /*
693                          * With GPFS it is not possible to deny ACL or
694                          * attribute access to the owner. Setting an
695                          * ACL with such an entry is not possible.
696                          * Denying ACL or attribute access for the
697                          * owner through a named ACL entry can be
698                          * stored in an ACL, it is just not effective.
699                          *
700                          * Map this case to a named entry to allow at
701                          * least setting this ACL, which will be
702                          * enforced by the smbd permission check. Do
703                          * not do this for an inheriting OWNER entry,
704                          * as this represents a CREATOR OWNER ACE. The
705                          * remaining limitation is that CREATOR OWNER
706                          * cannot deny ACL or attribute access.
707                          */
708                         if (!nfs_ace_is_inherit(nfs4_ace) &&
709                             nfs4_ace->aceType ==
710                                         SMB_ACE4_ACCESS_DENIED_ACE_TYPE &&
711                             nfs4_ace->aceMask & (SMB_ACE4_READ_ATTRIBUTES|
712                                                  SMB_ACE4_WRITE_ATTRIBUTES|
713                                                  SMB_ACE4_READ_ACL|
714                                                  SMB_ACE4_WRITE_ACL)) {
715                                 gace->aceIFlags = 0;
716                                 gace->aceWho = owner_uid;
717                         } else {
718                                 gace->aceIFlags = ACE4_IFLAG_SPECIAL_ID;
719                                 gace->aceWho = ACE4_SPECIAL_OWNER;
720                         }
721                         break;
722                 case SMB_ACE4_WHO_GROUP:
723                         gace->aceIFlags = ACE4_IFLAG_SPECIAL_ID;
724                         gace->aceWho = ACE4_SPECIAL_GROUP;
725                         break;
726                 default:
727                         DBG_WARNING("Unsupported special_id %d\n",
728                                     nfs4_ace->who.special_id);
729                         return false;
730                 }
731
732                 return true;
733         }
734
735         gace->aceIFlags = 0;
736         gace->aceWho = (nfs4_ace->aceFlags & SMB_ACE4_IDENTIFIER_GROUP) ?
737                 nfs4_ace->who.gid : nfs4_ace->who.uid;
738
739         return true;
740 }
741
742 static struct gpfs_acl *vfs_gpfs_smbacl2gpfsacl(TALLOC_CTX *mem_ctx,
743                                                 files_struct *fsp,
744                                                 struct SMB4ACL_T *smbacl,
745                                                 bool controlflags)
746 {
747         struct gpfs_acl *gacl;
748         gpfs_aclLen_t gacl_len;
749         struct SMB4ACE_T *smbace;
750
751         gacl_len = offsetof(gpfs_acl_t, ace_v4) + sizeof(unsigned int)
752                 + smb_get_naces(smbacl) * sizeof(gpfs_ace_v4_t);
753
754         gacl = (struct gpfs_acl *)TALLOC_SIZE(mem_ctx, gacl_len);
755         if (gacl == NULL) {
756                 DEBUG(0, ("talloc failed\n"));
757                 errno = ENOMEM;
758                 return NULL;
759         }
760
761         gacl->acl_level = GPFS_ACL_LEVEL_BASE;
762         gacl->acl_version = GPFS_ACL_VERSION_NFS4;
763         gacl->acl_type = GPFS_ACL_TYPE_NFS4;
764         gacl->acl_nace = 0; /* change later... */
765
766         if (controlflags) {
767                 gacl->acl_level = GPFS_ACL_LEVEL_V4FLAGS;
768                 sd2gpfs_control(smbacl4_get_controlflags(smbacl), gacl);
769         }
770
771         for (smbace=smb_first_ace4(smbacl); smbace!=NULL; smbace = smb_next_ace4(smbace)) {
772                 struct gpfs_ace_v4 *gace = gpfs_ace_ptr(gacl, gacl->acl_nace);
773                 SMB_ACE4PROP_T  *aceprop = smb_get_ace4(smbace);
774                 bool add_ace;
775
776                 add_ace = vfs_gpfs_nfs4_ace_to_gpfs_ace(aceprop, gace,
777                                                         fsp->fsp_name->st.st_ex_uid);
778                 if (!add_ace) {
779                         continue;
780                 }
781
782                 gacl->acl_nace++;
783         }
784         gacl->acl_len = (char *)gpfs_ace_ptr(gacl, gacl->acl_nace)
785                 - (char *)gacl;
786         return gacl;
787 }
788
789 static bool gpfsacl_process_smbacl(vfs_handle_struct *handle,
790                                    files_struct *fsp,
791                                    struct SMB4ACL_T *smbacl)
792 {
793         int ret;
794         struct gpfs_acl *gacl;
795         TALLOC_CTX *mem_ctx = talloc_tos();
796
797         gacl = vfs_gpfs_smbacl2gpfsacl(mem_ctx, fsp, smbacl, true);
798         if (gacl == NULL) { /* out of memory */
799                 return False;
800         }
801         ret = gpfswrap_putacl(fsp->fsp_name->base_name,
802                               GPFS_PUTACL_STRUCT | GPFS_ACL_SAMBA, gacl);
803
804         if ((ret != 0) && (errno == EINVAL)) {
805                 DEBUG(10, ("Retry without nfs41 control flags\n"));
806                 talloc_free(gacl);
807                 gacl = vfs_gpfs_smbacl2gpfsacl(mem_ctx, fsp, smbacl, false);
808                 if (gacl == NULL) { /* out of memory */
809                         return False;
810                 }
811                 ret = gpfswrap_putacl(fsp->fsp_name->base_name,
812                                       GPFS_PUTACL_STRUCT | GPFS_ACL_SAMBA,
813                                       gacl);
814         }
815
816         if (ret != 0) {
817                 DEBUG(8, ("gpfs_putacl failed with %s\n", strerror(errno)));
818                 gpfs_dumpacl(8, gacl);
819                 return False;
820         }
821
822         DEBUG(10, ("gpfs_putacl succeeded\n"));
823         return True;
824 }
825
826 static NTSTATUS gpfsacl_set_nt_acl_internal(vfs_handle_struct *handle, files_struct *fsp, uint32_t security_info_sent, const struct security_descriptor *psd)
827 {
828         struct gpfs_acl *acl;
829         NTSTATUS result = NT_STATUS_ACCESS_DENIED;
830
831         acl = (struct gpfs_acl*) vfs_gpfs_getacl(talloc_tos(),
832                                                  fsp->fsp_name->base_name,
833                                                  false, 0);
834         if (acl == NULL) {
835                 return map_nt_error_from_unix(errno);
836         }
837
838         if (acl->acl_version == GPFS_ACL_VERSION_NFS4) {
839                 struct gpfs_config_data *config;
840
841                 if (lp_parm_bool(fsp->conn->params->service, "gpfs",
842                                  "refuse_dacl_protected", false)
843                     && (psd->type&SEC_DESC_DACL_PROTECTED)) {
844                         DEBUG(2, ("Rejecting unsupported ACL with DACL_PROTECTED bit set\n"));
845                         talloc_free(acl);
846                         return NT_STATUS_NOT_SUPPORTED;
847                 }
848
849                 SMB_VFS_HANDLE_GET_DATA(handle, config,
850                                         struct gpfs_config_data,
851                                         return NT_STATUS_INTERNAL_ERROR);
852
853                 result = smb_set_nt_acl_nfs4(handle,
854                         fsp, &config->nfs4_params, security_info_sent, psd,
855                         gpfsacl_process_smbacl);
856         } else { /* assume POSIX ACL - by default... */
857                 result = set_nt_acl(fsp, security_info_sent, psd);
858         }
859
860         talloc_free(acl);
861         return result;
862 }
863
864 static NTSTATUS gpfsacl_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, uint32_t security_info_sent, const struct security_descriptor *psd)
865 {
866         struct gpfs_config_data *config;
867
868         SMB_VFS_HANDLE_GET_DATA(handle, config,
869                                 struct gpfs_config_data,
870                                 return NT_STATUS_INTERNAL_ERROR);
871
872         if (!config->acl) {
873                 return SMB_VFS_NEXT_FSET_NT_ACL(handle, fsp, security_info_sent, psd);
874         }
875
876         return gpfsacl_set_nt_acl_internal(handle, fsp, security_info_sent, psd);
877 }
878
879 static SMB_ACL_T gpfs2smb_acl(const struct gpfs_acl *pacl, TALLOC_CTX *mem_ctx)
880 {
881         SMB_ACL_T result;
882         gpfs_aclCount_t i;
883
884         result = sys_acl_init(mem_ctx);
885         if (result == NULL) {
886                 errno = ENOMEM;
887                 return NULL;
888         }
889
890         result->count = pacl->acl_nace;
891         result->acl = talloc_realloc(result, result->acl, struct smb_acl_entry,
892                                      result->count);
893         if (result->acl == NULL) {
894                 TALLOC_FREE(result);
895                 errno = ENOMEM;
896                 return NULL;
897         }
898
899         for (i=0; i<pacl->acl_nace; i++) {
900                 struct smb_acl_entry *ace = &result->acl[i];
901                 const struct gpfs_ace_v1 *g_ace = &pacl->ace_v1[i];
902
903                 DEBUG(10, ("Converting type %d id %lu perm %x\n",
904                            (int)g_ace->ace_type, (unsigned long)g_ace->ace_who,
905                            (int)g_ace->ace_perm));
906
907                 switch (g_ace->ace_type) {
908                 case GPFS_ACL_USER:
909                         ace->a_type = SMB_ACL_USER;
910                         ace->info.user.uid = (uid_t)g_ace->ace_who;
911                         break;
912                 case GPFS_ACL_USER_OBJ:
913                         ace->a_type = SMB_ACL_USER_OBJ;
914                         break;
915                 case GPFS_ACL_GROUP:
916                         ace->a_type = SMB_ACL_GROUP;
917                         ace->info.group.gid = (gid_t)g_ace->ace_who;
918                         break;
919                 case GPFS_ACL_GROUP_OBJ:
920                         ace->a_type = SMB_ACL_GROUP_OBJ;
921                         break;
922                 case GPFS_ACL_OTHER:
923                         ace->a_type = SMB_ACL_OTHER;
924                         break;
925                 case GPFS_ACL_MASK:
926                         ace->a_type = SMB_ACL_MASK;
927                         break;
928                 default:
929                         DEBUG(10, ("Got invalid ace_type: %d\n",
930                                    g_ace->ace_type));
931                         TALLOC_FREE(result);
932                         errno = EINVAL;
933                         return NULL;
934                 }
935
936                 ace->a_perm = 0;
937                 ace->a_perm |= (g_ace->ace_perm & ACL_PERM_READ) ?
938                         SMB_ACL_READ : 0;
939                 ace->a_perm |= (g_ace->ace_perm & ACL_PERM_WRITE) ?
940                         SMB_ACL_WRITE : 0;
941                 ace->a_perm |= (g_ace->ace_perm & ACL_PERM_EXECUTE) ?
942                         SMB_ACL_EXECUTE : 0;
943
944                 DEBUGADD(10, ("Converted to %d perm %x\n",
945                               ace->a_type, ace->a_perm));
946         }
947
948         return result;
949 }
950
951 static SMB_ACL_T gpfsacl_get_posix_acl(const char *path, gpfs_aclType_t type,
952                                        TALLOC_CTX *mem_ctx)
953 {
954         struct gpfs_acl *pacl;
955         SMB_ACL_T result = NULL;
956
957         pacl = vfs_gpfs_getacl(talloc_tos(), path, false, type);
958
959         if (pacl == NULL) {
960                 DEBUG(10, ("vfs_gpfs_getacl failed for %s with %s\n",
961                            path, strerror(errno)));
962                 if (errno == 0) {
963                         errno = EINVAL;
964                 }
965                 goto done;
966         }
967
968         if (pacl->acl_version != GPFS_ACL_VERSION_POSIX) {
969                 DEBUG(10, ("Got acl version %d, expected %d\n",
970                            pacl->acl_version, GPFS_ACL_VERSION_POSIX));
971                 errno = EINVAL;
972                 goto done;
973         }
974
975         DEBUG(10, ("len: %d, level: %d, version: %d, nace: %d\n",
976                    pacl->acl_len, pacl->acl_level, pacl->acl_version,
977                    pacl->acl_nace));
978
979         result = gpfs2smb_acl(pacl, mem_ctx);
980         if (result != NULL) {
981                 errno = 0;
982         }
983
984  done:
985
986         if (pacl != NULL) {
987                 talloc_free(pacl);
988         }
989         if (errno != 0) {
990                 TALLOC_FREE(result);
991         }
992         return result;
993 }
994
995 static SMB_ACL_T gpfsacl_sys_acl_get_fd(vfs_handle_struct *handle,
996                                         files_struct *fsp,
997                                         SMB_ACL_TYPE_T type,
998                                         TALLOC_CTX *mem_ctx)
999 {
1000         gpfs_aclType_t gpfs_type;
1001         struct gpfs_config_data *config;
1002
1003         SMB_VFS_HANDLE_GET_DATA(handle, config,
1004                                 struct gpfs_config_data,
1005                                 return NULL);
1006
1007         if (!config->acl) {
1008                 return SMB_VFS_NEXT_SYS_ACL_GET_FD(handle, fsp, type, mem_ctx);
1009         }
1010
1011         switch(type) {
1012         case SMB_ACL_TYPE_ACCESS:
1013                 gpfs_type = GPFS_ACL_TYPE_ACCESS;
1014                 break;
1015         case SMB_ACL_TYPE_DEFAULT:
1016                 gpfs_type = GPFS_ACL_TYPE_DEFAULT;
1017                 break;
1018         default:
1019                 DEBUG(0, ("Got invalid type: %d\n", type));
1020                 smb_panic("exiting");
1021         }
1022         return gpfsacl_get_posix_acl(fsp->fsp_name->base_name,
1023                                      gpfs_type, mem_ctx);
1024 }
1025
1026 static int gpfsacl_sys_acl_blob_get_fd(vfs_handle_struct *handle,
1027                                       files_struct *fsp,
1028                                       TALLOC_CTX *mem_ctx,
1029                                       char **blob_description,
1030                                       DATA_BLOB *blob)
1031 {
1032         struct gpfs_config_data *config;
1033         struct gpfs_opaque_acl *acl = NULL;
1034         DATA_BLOB aclblob;
1035         int result;
1036
1037         SMB_VFS_HANDLE_GET_DATA(handle, config,
1038                                 struct gpfs_config_data,
1039                                 return -1);
1040
1041         if (!config->acl) {
1042                 return SMB_VFS_NEXT_SYS_ACL_BLOB_GET_FD(handle, fsp, mem_ctx,
1043                                                         blob_description, blob);
1044         }
1045
1046         errno = 0;
1047         acl = (struct gpfs_opaque_acl *) vfs_gpfs_getacl(mem_ctx,
1048                                                 fsp->fsp_name->base_name,
1049                                                 true,
1050                                                 GPFS_ACL_TYPE_NFS4);
1051
1052         if (errno) {
1053                 DEBUG(5, ("vfs_gpfs_getacl finished with errno %d: %s\n",
1054                                         errno, strerror(errno)));
1055
1056                 /* EINVAL means POSIX ACL, bail out on other cases */
1057                 if (errno != EINVAL) {
1058                         return -1;
1059                 }
1060         }
1061
1062         if (acl != NULL) {
1063                 /*
1064                  * file has NFSv4 ACL
1065                  *
1066                  * we only need the actual ACL blob here
1067                  * acl_version will always be NFS4 because we asked
1068                  * for NFS4
1069                  * acl_type is only used for POSIX ACLs
1070                  */
1071                 aclblob.data = (uint8_t*) acl->acl_var_data;
1072                 aclblob.length = acl->acl_buffer_len;
1073
1074                 *blob_description = talloc_strdup(mem_ctx, "gpfs_nfs4_acl");
1075                 if (!*blob_description) {
1076                         talloc_free(acl);
1077                         errno = ENOMEM;
1078                         return -1;
1079                 }
1080
1081                 result = non_posix_sys_acl_blob_get_fd_helper(handle, fsp,
1082                                                               aclblob, mem_ctx,
1083                                                               blob);
1084
1085                 talloc_free(acl);
1086                 return result;
1087         }
1088
1089         /* fall back to POSIX ACL */
1090         return posix_sys_acl_blob_get_fd(handle, fsp, mem_ctx,
1091                                          blob_description, blob);
1092 }
1093
1094 static struct gpfs_acl *smb2gpfs_acl(const SMB_ACL_T pacl,
1095                                      SMB_ACL_TYPE_T type)
1096 {
1097         gpfs_aclLen_t len;
1098         struct gpfs_acl *result;
1099         int i;
1100
1101         DEBUG(10, ("smb2gpfs_acl: Got ACL with %d entries\n", pacl->count));
1102
1103         len = offsetof(gpfs_acl_t, ace_v1) + (pacl->count) *
1104                 sizeof(gpfs_ace_v1_t);
1105
1106         result = (struct gpfs_acl *)SMB_MALLOC(len);
1107         if (result == NULL) {
1108                 errno = ENOMEM;
1109                 return result;
1110         }
1111
1112         result->acl_len = len;
1113         result->acl_level = 0;
1114         result->acl_version = GPFS_ACL_VERSION_POSIX;
1115         result->acl_type = (type == SMB_ACL_TYPE_DEFAULT) ?
1116                 GPFS_ACL_TYPE_DEFAULT : GPFS_ACL_TYPE_ACCESS;
1117         result->acl_nace = pacl->count;
1118
1119         for (i=0; i<pacl->count; i++) {
1120                 const struct smb_acl_entry *ace = &pacl->acl[i];
1121                 struct gpfs_ace_v1 *g_ace = &result->ace_v1[i];
1122
1123                 DEBUG(10, ("Converting type %d perm %x\n",
1124                            (int)ace->a_type, (int)ace->a_perm));
1125
1126                 g_ace->ace_perm = 0;
1127
1128                 switch(ace->a_type) {
1129                 case SMB_ACL_USER:
1130                         g_ace->ace_type = GPFS_ACL_USER;
1131                         g_ace->ace_who = (gpfs_uid_t)ace->info.user.uid;
1132                         break;
1133                 case SMB_ACL_USER_OBJ:
1134                         g_ace->ace_type = GPFS_ACL_USER_OBJ;
1135                         g_ace->ace_perm |= ACL_PERM_CONTROL;
1136                         g_ace->ace_who = 0;
1137                         break;
1138                 case SMB_ACL_GROUP:
1139                         g_ace->ace_type = GPFS_ACL_GROUP;
1140                         g_ace->ace_who = (gpfs_uid_t)ace->info.group.gid;
1141                         break;
1142                 case SMB_ACL_GROUP_OBJ:
1143                         g_ace->ace_type = GPFS_ACL_GROUP_OBJ;
1144                         g_ace->ace_who = 0;
1145                         break;
1146                 case SMB_ACL_MASK:
1147                         g_ace->ace_type = GPFS_ACL_MASK;
1148                         g_ace->ace_perm = 0x8f;
1149                         g_ace->ace_who = 0;
1150                         break;
1151                 case SMB_ACL_OTHER:
1152                         g_ace->ace_type = GPFS_ACL_OTHER;
1153                         g_ace->ace_who = 0;
1154                         break;
1155                 default:
1156                         DEBUG(10, ("Got invalid ace_type: %d\n", ace->a_type));
1157                         errno = EINVAL;
1158                         SAFE_FREE(result);
1159                         return NULL;
1160                 }
1161
1162                 g_ace->ace_perm |= (ace->a_perm & SMB_ACL_READ) ?
1163                         ACL_PERM_READ : 0;
1164                 g_ace->ace_perm |= (ace->a_perm & SMB_ACL_WRITE) ?
1165                         ACL_PERM_WRITE : 0;
1166                 g_ace->ace_perm |= (ace->a_perm & SMB_ACL_EXECUTE) ?
1167                         ACL_PERM_EXECUTE : 0;
1168
1169                 DEBUGADD(10, ("Converted to %d id %d perm %x\n",
1170                               g_ace->ace_type, g_ace->ace_who, g_ace->ace_perm));
1171         }
1172
1173         return result;
1174 }
1175
1176 static int gpfsacl_sys_acl_set_fd(vfs_handle_struct *handle,
1177                                   files_struct *fsp,
1178                                   SMB_ACL_TYPE_T type,
1179                                   SMB_ACL_T theacl)
1180 {
1181         struct gpfs_config_data *config;
1182         struct gpfs_acl *gpfs_acl = NULL;
1183         int result;
1184
1185         SMB_VFS_HANDLE_GET_DATA(handle, config,
1186                                 struct gpfs_config_data,
1187                                 return -1);
1188
1189         if (!config->acl) {
1190                 return SMB_VFS_NEXT_SYS_ACL_SET_FD(handle, fsp, type, theacl);
1191         }
1192
1193         gpfs_acl = smb2gpfs_acl(theacl, type);
1194         if (gpfs_acl == NULL) {
1195                 return -1;
1196         }
1197
1198         /*
1199          * This is no longer a handle based call.
1200          */
1201         result = gpfswrap_putacl(fsp->fsp_name->base_name,
1202                                  GPFS_PUTACL_STRUCT|GPFS_ACL_SAMBA,
1203                                  gpfs_acl);
1204         SAFE_FREE(gpfs_acl);
1205         return result;
1206 }
1207
1208 static int gpfsacl_sys_acl_delete_def_fd(vfs_handle_struct *handle,
1209                                 files_struct *fsp)
1210 {
1211         struct gpfs_config_data *config;
1212
1213         SMB_VFS_HANDLE_GET_DATA(handle, config,
1214                                 struct gpfs_config_data,
1215                                 return -1);
1216
1217         if (!config->acl) {
1218                 return SMB_VFS_NEXT_SYS_ACL_DELETE_DEF_FD(handle, fsp);
1219         }
1220
1221         errno = ENOTSUP;
1222         return -1;
1223 }
1224
1225
1226 /*
1227  * Assumed: mode bits are shiftable and standard
1228  * Output: the new aceMask field for an smb nfs4 ace
1229  */
1230 static uint32_t gpfsacl_mask_filter(uint32_t aceType, uint32_t aceMask, uint32_t rwx)
1231 {
1232         const uint32_t posix_nfs4map[3] = {
1233                 SMB_ACE4_EXECUTE, /* execute */
1234                 SMB_ACE4_WRITE_DATA | SMB_ACE4_APPEND_DATA, /* write; GPFS specific */
1235                 SMB_ACE4_READ_DATA /* read */
1236         };
1237         int     i;
1238         uint32_t        posix_mask = 0x01;
1239         uint32_t        posix_bit;
1240         uint32_t        nfs4_bits;
1241
1242         for(i=0; i<3; i++) {
1243                 nfs4_bits = posix_nfs4map[i];
1244                 posix_bit = rwx & posix_mask;
1245
1246                 if (aceType==SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE) {
1247                         if (posix_bit)
1248                                 aceMask |= nfs4_bits;
1249                         else
1250                                 aceMask &= ~nfs4_bits;
1251                 } else {
1252                         /* add deny bits when suitable */
1253                         if (!posix_bit)
1254                                 aceMask |= nfs4_bits;
1255                         else
1256                                 aceMask &= ~nfs4_bits;
1257                 } /* other ace types are unexpected */
1258
1259                 posix_mask <<= 1;
1260         }
1261
1262         return aceMask;
1263 }
1264
1265 static int gpfsacl_emu_chmod(vfs_handle_struct *handle,
1266                              const struct smb_filename *fname, mode_t mode)
1267 {
1268         char *path = fname->base_name;
1269         struct SMB4ACL_T *pacl = NULL;
1270         int     result;
1271         bool    haveAllowEntry[SMB_ACE4_WHO_EVERYONE + 1] = {False, False, False, False};
1272         int     i;
1273         files_struct fake_fsp = { 0 }; /* TODO: rationalize parametrization */
1274         struct SMB4ACE_T *smbace;
1275         TALLOC_CTX *frame = talloc_stackframe();
1276
1277         DEBUG(10, ("gpfsacl_emu_chmod invoked for %s mode %o\n", path, mode));
1278
1279         result = gpfs_get_nfs4_acl(frame, path, &pacl);
1280         if (result) {
1281                 TALLOC_FREE(frame);
1282                 return result;
1283         }
1284
1285         if (mode & ~(S_IRWXU | S_IRWXG | S_IRWXO)) {
1286                 DEBUG(2, ("WARNING: cutting extra mode bits %o on %s\n", mode, path));
1287         }
1288
1289         for (smbace=smb_first_ace4(pacl); smbace!=NULL; smbace = smb_next_ace4(smbace)) {
1290                 SMB_ACE4PROP_T  *ace = smb_get_ace4(smbace);
1291                 uint32_t        specid = ace->who.special_id;
1292
1293                 if (ace->flags&SMB_ACE4_ID_SPECIAL &&
1294                     ace->aceType<=SMB_ACE4_ACCESS_DENIED_ACE_TYPE &&
1295                     specid <= SMB_ACE4_WHO_EVERYONE) {
1296
1297                         uint32_t newMask;
1298
1299                         if (ace->aceType==SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE)
1300                                 haveAllowEntry[specid] = True;
1301
1302                         /* mode >> 6 for @owner, mode >> 3 for @group,
1303                          * mode >> 0 for @everyone */
1304                         newMask = gpfsacl_mask_filter(ace->aceType, ace->aceMask,
1305                                                       mode >> ((SMB_ACE4_WHO_EVERYONE - specid) * 3));
1306                         if (ace->aceMask!=newMask) {
1307                                 DEBUG(10, ("ace changed for %s (%o -> %o) id=%d\n",
1308                                            path, ace->aceMask, newMask, specid));
1309                         }
1310                         ace->aceMask = newMask;
1311                 }
1312         }
1313
1314         /* make sure we have at least ALLOW entries
1315          * for all the 3 special ids (@EVERYONE, @OWNER, @GROUP)
1316          * - if necessary
1317          */
1318         for(i = SMB_ACE4_WHO_OWNER; i<=SMB_ACE4_WHO_EVERYONE; i++) {
1319                 SMB_ACE4PROP_T ace = { 0 };
1320
1321                 if (haveAllowEntry[i]==True)
1322                         continue;
1323
1324                 ace.aceType = SMB_ACE4_ACCESS_ALLOWED_ACE_TYPE;
1325                 ace.flags |= SMB_ACE4_ID_SPECIAL;
1326                 ace.who.special_id = i;
1327
1328                 if (i==SMB_ACE4_WHO_GROUP) /* not sure it's necessary... */
1329                         ace.aceFlags |= SMB_ACE4_IDENTIFIER_GROUP;
1330
1331                 ace.aceMask = gpfsacl_mask_filter(ace.aceType, ace.aceMask,
1332                                                   mode >> ((SMB_ACE4_WHO_EVERYONE - i) * 3));
1333
1334                 /* don't add unnecessary aces */
1335                 if (!ace.aceMask)
1336                         continue;
1337
1338                 /* we add it to the END - as windows expects allow aces */
1339                 smb_add_ace4(pacl, &ace);
1340                 DEBUG(10, ("Added ALLOW ace for %s, mode=%o, id=%d, aceMask=%x\n",
1341                            path, mode, i, ace.aceMask));
1342         }
1343
1344         /* don't add complementary DENY ACEs here */
1345         fake_fsp.fsp_name = synthetic_smb_fname(frame,
1346                                                 path,
1347                                                 NULL,
1348                                                 NULL,
1349                                                 fname->twrp,
1350                                                 0);
1351         if (fake_fsp.fsp_name == NULL) {
1352                 errno = ENOMEM;
1353                 TALLOC_FREE(frame);
1354                 return -1;
1355         }
1356         /* put the acl */
1357         if (gpfsacl_process_smbacl(handle, &fake_fsp, pacl) == False) {
1358                 TALLOC_FREE(frame);
1359                 return -1;
1360         }
1361
1362         TALLOC_FREE(frame);
1363         return 0; /* ok for [f]chmod */
1364 }
1365
1366 static int vfs_gpfs_fchmod(vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
1367 {
1368                  SMB_STRUCT_STAT st;
1369                  int rc;
1370
1371                  if (SMB_VFS_NEXT_FSTAT(handle, fsp, &st) != 0) {
1372                          return -1;
1373                  }
1374
1375                  /* avoid chmod() if possible, to preserve acls */
1376                  if ((st.st_ex_mode & ~S_IFMT) == mode) {
1377                          return 0;
1378                  }
1379
1380                  rc = gpfsacl_emu_chmod(handle, fsp->fsp_name,
1381                                         mode);
1382                  if (rc == 1)
1383                          return SMB_VFS_NEXT_FCHMOD(handle, fsp, mode);
1384                  return rc;
1385 }
1386
1387 static uint32_t vfs_gpfs_winattrs_to_dosmode(unsigned int winattrs)
1388 {
1389         uint32_t dosmode = 0;
1390
1391         if (winattrs & GPFS_WINATTR_ARCHIVE){
1392                 dosmode |= FILE_ATTRIBUTE_ARCHIVE;
1393         }
1394         if (winattrs & GPFS_WINATTR_HIDDEN){
1395                 dosmode |= FILE_ATTRIBUTE_HIDDEN;
1396         }
1397         if (winattrs & GPFS_WINATTR_SYSTEM){
1398                 dosmode |= FILE_ATTRIBUTE_SYSTEM;
1399         }
1400         if (winattrs & GPFS_WINATTR_READONLY){
1401                 dosmode |= FILE_ATTRIBUTE_READONLY;
1402         }
1403         if (winattrs & GPFS_WINATTR_SPARSE_FILE) {
1404                 dosmode |= FILE_ATTRIBUTE_SPARSE;
1405         }
1406         if (winattrs & GPFS_WINATTR_OFFLINE) {
1407                 dosmode |= FILE_ATTRIBUTE_OFFLINE;
1408         }
1409
1410         return dosmode;
1411 }
1412
1413 static unsigned int vfs_gpfs_dosmode_to_winattrs(uint32_t dosmode)
1414 {
1415         unsigned int winattrs = 0;
1416
1417         if (dosmode & FILE_ATTRIBUTE_ARCHIVE){
1418                 winattrs |= GPFS_WINATTR_ARCHIVE;
1419         }
1420         if (dosmode & FILE_ATTRIBUTE_HIDDEN){
1421                 winattrs |= GPFS_WINATTR_HIDDEN;
1422         }
1423         if (dosmode & FILE_ATTRIBUTE_SYSTEM){
1424                 winattrs |= GPFS_WINATTR_SYSTEM;
1425         }
1426         if (dosmode & FILE_ATTRIBUTE_READONLY){
1427                 winattrs |= GPFS_WINATTR_READONLY;
1428         }
1429         if (dosmode & FILE_ATTRIBUTE_SPARSE) {
1430                 winattrs |= GPFS_WINATTR_SPARSE_FILE;
1431         }
1432         if (dosmode & FILE_ATTRIBUTE_OFFLINE) {
1433                 winattrs |= GPFS_WINATTR_OFFLINE;
1434         }
1435
1436         return winattrs;
1437 }
1438
1439 static struct timespec gpfs_timestruc64_to_timespec(struct gpfs_timestruc64 g)
1440 {
1441         return (struct timespec) { .tv_sec = g.tv_sec, .tv_nsec = g.tv_nsec };
1442 }
1443
1444 static NTSTATUS vfs_gpfs_fget_dos_attributes(struct vfs_handle_struct *handle,
1445                                              struct files_struct *fsp,
1446                                              uint32_t *dosmode)
1447 {
1448         struct gpfs_config_data *config;
1449         int fd = fsp_get_pathref_fd(fsp);
1450         char buf[PATH_MAX];
1451         const char *p = NULL;
1452         struct gpfs_iattr64 iattr = { };
1453         unsigned int litemask = 0;
1454         struct timespec ts;
1455         int ret;
1456
1457         SMB_VFS_HANDLE_GET_DATA(handle, config,
1458                                 struct gpfs_config_data,
1459                                 return NT_STATUS_INTERNAL_ERROR);
1460
1461         if (!config->winattr) {
1462                 return SMB_VFS_NEXT_FGET_DOS_ATTRIBUTES(handle, fsp, dosmode);
1463         }
1464
1465         if (fsp->fsp_flags.is_pathref && !config->pathref_ok.gpfs_fstat_x) {
1466                 if (fsp->fsp_flags.have_proc_fds) {
1467                         p = sys_proc_fd_path(fd, buf, sizeof(buf));
1468                         if (p == NULL) {
1469                                 return NT_STATUS_NO_MEMORY;
1470                         }
1471                 } else {
1472                         p = fsp->fsp_name->base_name;
1473                 }
1474         }
1475
1476         if (p != NULL) {
1477                 ret = gpfswrap_stat_x(p, &litemask, &iattr, sizeof(iattr));
1478         } else {
1479                 ret = gpfswrap_fstat_x(fd, &litemask, &iattr, sizeof(iattr));
1480         }
1481         if (ret == -1 && errno == ENOSYS) {
1482                 return SMB_VFS_NEXT_FGET_DOS_ATTRIBUTES(handle, fsp, dosmode);
1483         }
1484
1485         if (ret == -1 && errno == EACCES) {
1486                 int saved_errno = 0;
1487
1488                 /*
1489                  * According to MS-FSA 2.1.5.1.2.1 "Algorithm to Check Access to
1490                  * an Existing File" FILE_LIST_DIRECTORY on a directory implies
1491                  * FILE_READ_ATTRIBUTES for directory entries. Being able to
1492                  * open a file implies FILE_LIST_DIRECTORY.
1493                  */
1494
1495                 set_effective_capability(DAC_OVERRIDE_CAPABILITY);
1496
1497                 if (p != NULL) {
1498                         ret = gpfswrap_stat_x(p,
1499                                               &litemask,
1500                                               &iattr,
1501                                               sizeof(iattr));
1502                 } else {
1503                         ret = gpfswrap_fstat_x(fd,
1504                                                &litemask,
1505                                                &iattr,
1506                                                sizeof(iattr));
1507                 }
1508                 if (ret == -1) {
1509                         saved_errno = errno;
1510                 }
1511
1512                 drop_effective_capability(DAC_OVERRIDE_CAPABILITY);
1513
1514                 if (saved_errno != 0) {
1515                         errno = saved_errno;
1516                 }
1517         }
1518
1519         if (ret == -1) {
1520                 DBG_WARNING("Getting winattrs failed for %s: %s\n",
1521                             fsp->fsp_name->base_name, strerror(errno));
1522                 return map_nt_error_from_unix(errno);
1523         }
1524
1525         ts = gpfs_timestruc64_to_timespec(iattr.ia_createtime);
1526
1527         *dosmode |= vfs_gpfs_winattrs_to_dosmode(iattr.ia_winflags);
1528         update_stat_ex_create_time(&fsp->fsp_name->st, ts);
1529
1530         return NT_STATUS_OK;
1531 }
1532
1533 static NTSTATUS vfs_gpfs_fset_dos_attributes(struct vfs_handle_struct *handle,
1534                                              struct files_struct *fsp,
1535                                              uint32_t dosmode)
1536 {
1537         struct gpfs_config_data *config;
1538         struct gpfs_winattr attrs = { };
1539         int ret;
1540
1541         SMB_VFS_HANDLE_GET_DATA(handle, config,
1542                                 struct gpfs_config_data,
1543                                 return NT_STATUS_INTERNAL_ERROR);
1544
1545         if (!config->winattr) {
1546                 return SMB_VFS_NEXT_FSET_DOS_ATTRIBUTES(handle, fsp, dosmode);
1547         }
1548
1549         attrs.winAttrs = vfs_gpfs_dosmode_to_winattrs(dosmode);
1550
1551         if (!fsp->fsp_flags.is_pathref) {
1552                 ret = gpfswrap_set_winattrs(fsp_get_io_fd(fsp),
1553                                             GPFS_WINATTR_SET_ATTRS, &attrs);
1554                 if (ret == -1) {
1555                         DBG_WARNING("Setting winattrs failed for %s: %s\n",
1556                                     fsp_str_dbg(fsp), strerror(errno));
1557                         return map_nt_error_from_unix(errno);
1558                 }
1559                 return NT_STATUS_OK;
1560         }
1561
1562         if (fsp->fsp_flags.have_proc_fds) {
1563                 int fd = fsp_get_pathref_fd(fsp);
1564                 const char *p = NULL;
1565                 char buf[PATH_MAX];
1566
1567                 p = sys_proc_fd_path(fd, buf, sizeof(buf));
1568                 if (p == NULL) {
1569                         return NT_STATUS_NO_MEMORY;
1570                 }
1571
1572                 ret = gpfswrap_set_winattrs_path(p,
1573                                                  GPFS_WINATTR_SET_ATTRS,
1574                                                  &attrs);
1575                 if (ret == -1) {
1576                         DBG_WARNING("Setting winattrs failed for [%s][%s]: %s\n",
1577                                     p, fsp_str_dbg(fsp), strerror(errno));
1578                         return map_nt_error_from_unix(errno);
1579                 }
1580                 return NT_STATUS_OK;
1581         }
1582
1583         /*
1584          * This is no longer a handle based call.
1585          */
1586         ret = gpfswrap_set_winattrs_path(fsp->fsp_name->base_name,
1587                                          GPFS_WINATTR_SET_ATTRS,
1588                                          &attrs);
1589         if (ret == -1) {
1590                 DBG_WARNING("Setting winattrs failed for [%s]: %s\n",
1591                             fsp_str_dbg(fsp), strerror(errno));
1592                 return map_nt_error_from_unix(errno);
1593         }
1594
1595         return NT_STATUS_OK;
1596 }
1597
1598 static int stat_with_capability(struct vfs_handle_struct *handle,
1599                                 struct smb_filename *smb_fname, int flag)
1600 {
1601         int fd = -1;
1602         NTSTATUS status;
1603         struct smb_filename *dir_name = NULL;
1604         struct smb_filename *rel_name = NULL;
1605         struct stat st;
1606         int ret = -1;
1607
1608         status = SMB_VFS_PARENT_PATHNAME(handle->conn,
1609                                          talloc_tos(),
1610                                          smb_fname,
1611                                          &dir_name,
1612                                          &rel_name);
1613         if (!NT_STATUS_IS_OK(status)) {
1614                 errno = map_errno_from_nt_status(status);
1615                 return -1;
1616         }
1617
1618         fd = open(dir_name->base_name, O_RDONLY, 0);
1619         if (fd == -1) {
1620                 TALLOC_FREE(dir_name);
1621                 return -1;
1622         }
1623
1624         set_effective_capability(DAC_OVERRIDE_CAPABILITY);
1625         ret = fstatat(fd, rel_name->base_name, &st, flag);
1626         drop_effective_capability(DAC_OVERRIDE_CAPABILITY);
1627
1628         TALLOC_FREE(dir_name);
1629         close(fd);
1630
1631         if (ret == 0) {
1632                 init_stat_ex_from_stat(
1633                         &smb_fname->st, &st,
1634                         lp_fake_directory_create_times(SNUM(handle->conn)));
1635         }
1636
1637         return ret;
1638 }
1639
1640 static int vfs_gpfs_stat(struct vfs_handle_struct *handle,
1641                          struct smb_filename *smb_fname)
1642 {
1643         int ret;
1644
1645         ret = SMB_VFS_NEXT_STAT(handle, smb_fname);
1646         if (ret == -1 && errno == EACCES) {
1647                 DEBUG(10, ("Trying stat with capability for %s\n",
1648                            smb_fname->base_name));
1649                 ret = stat_with_capability(handle, smb_fname, 0);
1650         }
1651         return ret;
1652 }
1653
1654 static int vfs_gpfs_lstat(struct vfs_handle_struct *handle,
1655                           struct smb_filename *smb_fname)
1656 {
1657         int ret;
1658
1659         ret = SMB_VFS_NEXT_LSTAT(handle, smb_fname);
1660         if (ret == -1 && errno == EACCES) {
1661                 DEBUG(10, ("Trying lstat with capability for %s\n",
1662                            smb_fname->base_name));
1663                 ret = stat_with_capability(handle, smb_fname,
1664                                            AT_SYMLINK_NOFOLLOW);
1665         }
1666         return ret;
1667 }
1668
1669 static void timespec_to_gpfs_time(struct timespec ts, gpfs_timestruc_t *gt,
1670                                   int idx, int *flags)
1671 {
1672         if (!is_omit_timespec(&ts)) {
1673                 *flags |= 1 << idx;
1674                 gt[idx].tv_sec = ts.tv_sec;
1675                 gt[idx].tv_nsec = ts.tv_nsec;
1676                 DEBUG(10, ("Setting GPFS time %d, flags 0x%x\n", idx, *flags));
1677         }
1678 }
1679
1680 static int smbd_gpfs_set_times(struct files_struct *fsp,
1681                                struct smb_file_time *ft)
1682 {
1683         gpfs_timestruc_t gpfs_times[4];
1684         int flags = 0;
1685         int rc;
1686
1687         ZERO_ARRAY(gpfs_times);
1688         timespec_to_gpfs_time(ft->atime, gpfs_times, 0, &flags);
1689         timespec_to_gpfs_time(ft->mtime, gpfs_times, 1, &flags);
1690         /* No good mapping from LastChangeTime to ctime, not storing */
1691         timespec_to_gpfs_time(ft->create_time, gpfs_times, 3, &flags);
1692
1693         if (!flags) {
1694                 DBG_DEBUG("nothing to do, return to avoid EINVAL\n");
1695                 return 0;
1696         }
1697
1698         if (!fsp->fsp_flags.is_pathref) {
1699                 rc = gpfswrap_set_times(fsp_get_io_fd(fsp), flags, gpfs_times);
1700                 if (rc != 0) {
1701                         DBG_WARNING("gpfs_set_times(%s) failed: %s\n",
1702                                     fsp_str_dbg(fsp), strerror(errno));
1703                 }
1704                 return rc;
1705         }
1706
1707
1708         if (fsp->fsp_flags.have_proc_fds) {
1709                 int fd = fsp_get_pathref_fd(fsp);
1710                 const char *p = NULL;
1711                 char buf[PATH_MAX];
1712
1713                 p = sys_proc_fd_path(fd, buf, sizeof(buf));
1714                 if (p == NULL) {
1715                         return -1;
1716                 }
1717
1718                 rc = gpfswrap_set_times_path(buf, flags, gpfs_times);
1719                 if (rc != 0) {
1720                         DBG_WARNING("gpfs_set_times_path(%s,%s) failed: %s\n",
1721                                     fsp_str_dbg(fsp), p, strerror(errno));
1722                 }
1723                 return rc;
1724         }
1725
1726         /*
1727          * This is no longer a handle based call.
1728          */
1729
1730         rc = gpfswrap_set_times_path(fsp->fsp_name->base_name,
1731                                      flags,
1732                                      gpfs_times);
1733         if (rc != 0) {
1734                 DBG_WARNING("gpfs_set_times_path(%s) failed: %s\n",
1735                             fsp_str_dbg(fsp), strerror(errno));
1736         }
1737         return rc;
1738 }
1739
1740 static int vfs_gpfs_fntimes(struct vfs_handle_struct *handle,
1741                 files_struct *fsp,
1742                 struct smb_file_time *ft)
1743 {
1744
1745         struct gpfs_winattr attrs;
1746         int ret;
1747         struct gpfs_config_data *config;
1748
1749         SMB_VFS_HANDLE_GET_DATA(handle,
1750                                 config,
1751                                 struct gpfs_config_data,
1752                                 return -1);
1753
1754         /* Try to use gpfs_set_times if it is enabled and available */
1755         if (config->settimes) {
1756                 return smbd_gpfs_set_times(fsp, ft);
1757         }
1758
1759         DBG_DEBUG("gpfs_set_times() not available or disabled, "
1760                   "use ntimes and winattr\n");
1761
1762         ret = SMB_VFS_NEXT_FNTIMES(handle, fsp, ft);
1763         if (ret == -1) {
1764                 /* don't complain if access was denied */
1765                 if (errno != EPERM && errno != EACCES) {
1766                         DBG_WARNING("SMB_VFS_NEXT_FNTIMES failed: %s",
1767                                     strerror(errno));
1768                 }
1769                 return -1;
1770         }
1771
1772         if (is_omit_timespec(&ft->create_time)) {
1773                 DBG_DEBUG("Create Time is NULL\n");
1774                 return 0;
1775         }
1776
1777         if (!config->winattr) {
1778                 return 0;
1779         }
1780
1781         attrs.winAttrs = 0;
1782         attrs.creationTime.tv_sec = ft->create_time.tv_sec;
1783         attrs.creationTime.tv_nsec = ft->create_time.tv_nsec;
1784
1785         if (!fsp->fsp_flags.is_pathref) {
1786                 ret = gpfswrap_set_winattrs(fsp_get_io_fd(fsp),
1787                                             GPFS_WINATTR_SET_CREATION_TIME,
1788                                             &attrs);
1789                 if (ret == -1 && errno != ENOSYS) {
1790                         DBG_WARNING("Set GPFS ntimes failed %d\n", ret);
1791                         return -1;
1792                 }
1793                 return ret;
1794         }
1795
1796         if (fsp->fsp_flags.have_proc_fds) {
1797                 int fd = fsp_get_pathref_fd(fsp);
1798                 const char *p = NULL;
1799                 char buf[PATH_MAX];
1800
1801                 p = sys_proc_fd_path(fd, buf, sizeof(buf));
1802                 if (p == NULL) {
1803                         return -1;
1804                 }
1805
1806                 ret = gpfswrap_set_winattrs_path(p,
1807                                                  GPFS_WINATTR_SET_CREATION_TIME,
1808                                                  &attrs);
1809                 if (ret == -1 && errno != ENOSYS) {
1810                         DBG_WARNING("Set GPFS ntimes failed %d\n", ret);
1811                         return -1;
1812                 }
1813                 return ret;
1814         }
1815
1816         /*
1817          * This is no longer a handle based call.
1818          */
1819         ret = gpfswrap_set_winattrs_path(fsp->fsp_name->base_name,
1820                                          GPFS_WINATTR_SET_CREATION_TIME,
1821                                          &attrs);
1822         if (ret == -1 && errno != ENOSYS) {
1823                 DBG_WARNING("Set GPFS ntimes failed %d\n", ret);
1824                 return -1;
1825         }
1826
1827         return 0;
1828 }
1829
1830 static int vfs_gpfs_fallocate(struct vfs_handle_struct *handle,
1831                               struct files_struct *fsp, uint32_t mode,
1832                               off_t offset, off_t len)
1833 {
1834         if (mode == (VFS_FALLOCATE_FL_PUNCH_HOLE|VFS_FALLOCATE_FL_KEEP_SIZE) &&
1835             !fsp->fsp_flags.is_sparse &&
1836             lp_strict_allocate(SNUM(fsp->conn))) {
1837                 /*
1838                  * This is from a ZERO_DATA request on a non-sparse
1839                  * file. GPFS does not support FL_KEEP_SIZE and thus
1840                  * cannot fill the whole again in the subsequent
1841                  * fallocate(FL_KEEP_SIZE). Deny this FL_PUNCH_HOLE
1842                  * call to not end up with a hole in a non-sparse
1843                  * file.
1844                  */
1845                 errno = ENOTSUP;
1846                 return -1;
1847         }
1848
1849         return SMB_VFS_NEXT_FALLOCATE(handle, fsp, mode, offset, len);
1850 }
1851
1852 static int vfs_gpfs_ftruncate(vfs_handle_struct *handle, files_struct *fsp,
1853                                 off_t len)
1854 {
1855         int result;
1856         struct gpfs_config_data *config;
1857
1858         SMB_VFS_HANDLE_GET_DATA(handle, config,
1859                                 struct gpfs_config_data,
1860                                 return -1);
1861
1862         if (!config->ftruncate) {
1863                 return SMB_VFS_NEXT_FTRUNCATE(handle, fsp, len);
1864         }
1865
1866         result = gpfswrap_ftruncate(fsp_get_io_fd(fsp), len);
1867         if ((result == -1) && (errno == ENOSYS)) {
1868                 return SMB_VFS_NEXT_FTRUNCATE(handle, fsp, len);
1869         }
1870         return result;
1871 }
1872
1873 static bool vfs_gpfs_is_offline(struct vfs_handle_struct *handle,
1874                                 const struct smb_filename *fname,
1875                                 SMB_STRUCT_STAT *sbuf)
1876 {
1877         struct gpfs_winattr attrs;
1878         struct gpfs_config_data *config;
1879         int ret;
1880
1881         SMB_VFS_HANDLE_GET_DATA(handle, config,
1882                                 struct gpfs_config_data,
1883                                 return false);
1884
1885         if (!config->winattr) {
1886                 return false;
1887         }
1888
1889         ret = gpfswrap_get_winattrs_path(fname->base_name, &attrs);
1890         if (ret == -1) {
1891                 return false;
1892         }
1893
1894         if ((attrs.winAttrs & GPFS_WINATTR_OFFLINE) != 0) {
1895                 DBG_DEBUG("%s is offline\n", fname->base_name);
1896                 return true;
1897         }
1898
1899         DBG_DEBUG("%s is online\n", fname->base_name);
1900         return false;
1901 }
1902
1903 static bool vfs_gpfs_fsp_is_offline(struct vfs_handle_struct *handle,
1904                                     struct files_struct *fsp)
1905 {
1906         struct gpfs_fsp_extension *ext;
1907
1908         ext = VFS_FETCH_FSP_EXTENSION(handle, fsp);
1909         if (ext == NULL) {
1910                 /*
1911                  * Something bad happened, always ask.
1912                  */
1913                 return vfs_gpfs_is_offline(handle, fsp->fsp_name,
1914                                            &fsp->fsp_name->st);
1915         }
1916
1917         if (ext->offline) {
1918                 /*
1919                  * As long as it's offline, ask.
1920                  */
1921                 ext->offline = vfs_gpfs_is_offline(handle, fsp->fsp_name,
1922                                                    &fsp->fsp_name->st);
1923         }
1924
1925         return ext->offline;
1926 }
1927
1928 static bool vfs_gpfs_aio_force(struct vfs_handle_struct *handle,
1929                                struct files_struct *fsp)
1930 {
1931         return vfs_gpfs_fsp_is_offline(handle, fsp);
1932 }
1933
1934 static ssize_t vfs_gpfs_sendfile(vfs_handle_struct *handle, int tofd,
1935                                  files_struct *fsp, const DATA_BLOB *hdr,
1936                                  off_t offset, size_t n)
1937 {
1938         if (vfs_gpfs_fsp_is_offline(handle, fsp)) {
1939                 errno = ENOSYS;
1940                 return -1;
1941         }
1942         return SMB_VFS_NEXT_SENDFILE(handle, tofd, fsp, hdr, offset, n);
1943 }
1944
1945 #ifdef O_PATH
1946 static int vfs_gpfs_check_pathref_fstat_x(struct gpfs_config_data *config,
1947                                           struct connection_struct *conn)
1948 {
1949         struct gpfs_iattr64 iattr = {0};
1950         unsigned int litemask = 0;
1951         int saved_errno;
1952         int fd;
1953         int ret;
1954
1955         fd = open(conn->connectpath, O_PATH);
1956         if (fd == -1) {
1957                 DBG_ERR("openat() of share with O_PATH failed: %s\n",
1958                         strerror(errno));
1959                 return -1;
1960         }
1961
1962         ret = gpfswrap_fstat_x(fd, &litemask, &iattr, sizeof(iattr));
1963         if (ret == 0) {
1964                 close(fd);
1965                 config->pathref_ok.gpfs_fstat_x = true;
1966                 return 0;
1967         }
1968
1969         saved_errno = errno;
1970         ret = close(fd);
1971         if (ret != 0) {
1972                 DBG_ERR("close failed: %s\n", strerror(errno));
1973                 return -1;
1974         }
1975
1976         if (saved_errno != EBADF) {
1977                 DBG_ERR("gpfswrap_fstat_x() of O_PATH handle failed: %s\n",
1978                         strerror(saved_errno));
1979                 return -1;
1980         }
1981
1982         return 0;
1983 }
1984 #endif
1985
1986 static int vfs_gpfs_check_pathref(struct gpfs_config_data *config,
1987                                   struct connection_struct *conn)
1988 {
1989 #ifndef O_PATH
1990         /*
1991          * This code path leaves all struct gpfs_config_data.pathref_ok members
1992          * initialized to false.
1993          */
1994         return 0;
1995 #else
1996         int ret;
1997
1998         ret = vfs_gpfs_check_pathref_fstat_x(config, conn);
1999         if (ret != 0) {
2000                 return -1;
2001         }
2002
2003         return 0;
2004 #endif
2005 }
2006
2007 static int vfs_gpfs_connect(struct vfs_handle_struct *handle,
2008                             const char *service, const char *user)
2009 {
2010         struct gpfs_config_data *config;
2011         int ret;
2012         bool check_fstype;
2013
2014         ret = SMB_VFS_NEXT_CONNECT(handle, service, user);
2015         if (ret < 0) {
2016                 return ret;
2017         }
2018
2019         if (IS_IPC(handle->conn)) {
2020                 return 0;
2021         }
2022
2023         gpfswrap_lib_init(0);
2024
2025         config = talloc_zero(handle->conn, struct gpfs_config_data);
2026         if (!config) {
2027                 DEBUG(0, ("talloc_zero() failed\n"));
2028                 errno = ENOMEM;
2029                 return -1;
2030         }
2031
2032         check_fstype = lp_parm_bool(SNUM(handle->conn), "gpfs",
2033                                     "check_fstype", true);
2034
2035         if (check_fstype) {
2036                 const char *connectpath = handle->conn->connectpath;
2037                 struct statfs buf = { 0 };
2038
2039                 ret = statfs(connectpath, &buf);
2040                 if (ret != 0) {
2041                         DBG_ERR("statfs failed for share %s at path %s: %s\n",
2042                                 service, connectpath, strerror(errno));
2043                         TALLOC_FREE(config);
2044                         return ret;
2045                 }
2046
2047                 if (buf.f_type != GPFS_SUPER_MAGIC) {
2048                         DBG_ERR("SMB share %s, path %s not in GPFS file system."
2049                                 " statfs magic: 0x%jx\n",
2050                                 service,
2051                                 connectpath,
2052                                 (uintmax_t)buf.f_type);
2053                         errno = EINVAL;
2054                         TALLOC_FREE(config);
2055                         return -1;
2056                 }
2057         }
2058
2059         ret = smbacl4_get_vfs_params(handle->conn, &config->nfs4_params);
2060         if (ret < 0) {
2061                 TALLOC_FREE(config);
2062                 return ret;
2063         }
2064
2065         config->sharemodes = lp_parm_bool(SNUM(handle->conn), "gpfs",
2066                                         "sharemodes", true);
2067
2068         config->leases = lp_parm_bool(SNUM(handle->conn), "gpfs",
2069                                         "leases", true);
2070
2071         config->hsm = lp_parm_bool(SNUM(handle->conn), "gpfs",
2072                                    "hsm", false);
2073
2074         config->syncio = lp_parm_bool(SNUM(handle->conn), "gpfs",
2075                                       "syncio", false);
2076
2077         config->winattr = lp_parm_bool(SNUM(handle->conn), "gpfs",
2078                                        "winattr", false);
2079
2080         config->ftruncate = lp_parm_bool(SNUM(handle->conn), "gpfs",
2081                                          "ftruncate", true);
2082
2083         config->getrealfilename = lp_parm_bool(SNUM(handle->conn), "gpfs",
2084                                                "getrealfilename", true);
2085
2086         config->dfreequota = lp_parm_bool(SNUM(handle->conn), "gpfs",
2087                                           "dfreequota", false);
2088
2089         config->acl = lp_parm_bool(SNUM(handle->conn), "gpfs", "acl", true);
2090
2091         config->settimes = lp_parm_bool(SNUM(handle->conn), "gpfs",
2092                                         "settimes", true);
2093         config->recalls = lp_parm_bool(SNUM(handle->conn), "gpfs",
2094                                        "recalls", true);
2095
2096         ret = vfs_gpfs_check_pathref(config, handle->conn);
2097         if (ret != 0) {
2098                 DBG_ERR("vfs_gpfs_check_pathref() on [%s] failed\n",
2099                         handle->conn->connectpath);
2100                 TALLOC_FREE(config);
2101                 return -1;
2102         }
2103
2104         SMB_VFS_HANDLE_SET_DATA(handle, config,
2105                                 NULL, struct gpfs_config_data,
2106                                 return -1);
2107
2108         if (config->leases) {
2109                 /*
2110                  * GPFS lease code is based on kernel oplock code
2111                  * so make sure it is turned on
2112                  */
2113                 if (!lp_kernel_oplocks(SNUM(handle->conn))) {
2114                         DEBUG(5, ("Enabling kernel oplocks for "
2115                                   "gpfs:leases to work\n"));
2116                         lp_do_parameter(SNUM(handle->conn), "kernel oplocks",
2117                                         "true");
2118                 }
2119
2120                 /*
2121                  * as the kernel does not properly support Level II oplocks
2122                  * and GPFS leases code is based on kernel infrastructure, we
2123                  * need to turn off Level II oplocks if gpfs:leases is enabled
2124                  */
2125                 if (lp_level2_oplocks(SNUM(handle->conn))) {
2126                         DEBUG(5, ("gpfs:leases are enabled, disabling "
2127                                   "Level II oplocks\n"));
2128                         lp_do_parameter(SNUM(handle->conn), "level2 oplocks",
2129                                         "false");
2130                 }
2131         }
2132
2133         /*
2134          * Unless we have an async implementation of get_dos_attributes turn
2135          * this off.
2136          */
2137         lp_do_parameter(SNUM(handle->conn), "smbd async dosmode", "false");
2138
2139         return 0;
2140 }
2141
2142 static int get_gpfs_quota(const char *pathname, int type, int id,
2143                           struct gpfs_quotaInfo *qi)
2144 {
2145         int ret;
2146
2147         ret = gpfswrap_quotactl(pathname, GPFS_QCMD(Q_GETQUOTA, type), id, qi);
2148
2149         if (ret) {
2150                 if (errno == GPFS_E_NO_QUOTA_INST) {
2151                         DEBUG(10, ("Quotas disabled on GPFS filesystem.\n"));
2152                 } else if (errno != ENOSYS) {
2153                         DEBUG(0, ("Get quota failed, type %d, id, %d, "
2154                                   "errno %d.\n", type, id, errno));
2155                 }
2156
2157                 return ret;
2158         }
2159
2160         DEBUG(10, ("quota type %d, id %d, blk u:%lld h:%lld s:%lld gt:%u\n",
2161                    type, id, qi->blockUsage, qi->blockHardLimit,
2162                    qi->blockSoftLimit, qi->blockGraceTime));
2163
2164         return ret;
2165 }
2166
2167 static void vfs_gpfs_disk_free_quota(struct gpfs_quotaInfo qi, time_t cur_time,
2168                                      uint64_t *dfree, uint64_t *dsize)
2169 {
2170         uint64_t usage, limit;
2171
2172         /*
2173          * The quota reporting is done in units of 1024 byte blocks, but
2174          * sys_fsusage uses units of 512 byte blocks, adjust the block number
2175          * accordingly. Also filter possibly negative usage counts from gpfs.
2176          */
2177         usage = qi.blockUsage < 0 ? 0 : (uint64_t)qi.blockUsage * 2;
2178         limit = (uint64_t)qi.blockHardLimit * 2;
2179
2180         /*
2181          * When the grace time for the exceeded soft block quota has been
2182          * exceeded, the soft block quota becomes an additional hard limit.
2183          */
2184         if (qi.blockSoftLimit &&
2185             qi.blockGraceTime && cur_time > qi.blockGraceTime) {
2186                 /* report disk as full */
2187                 *dfree = 0;
2188                 *dsize = MIN(*dsize, usage);
2189         }
2190
2191         if (!qi.blockHardLimit)
2192                 return;
2193
2194         if (usage >= limit) {
2195                 /* report disk as full */
2196                 *dfree = 0;
2197                 *dsize = MIN(*dsize, usage);
2198
2199         } else {
2200                 /* limit has not been reached, determine "free space" */
2201                 *dfree = MIN(*dfree, limit - usage);
2202                 *dsize = MIN(*dsize, limit);
2203         }
2204 }
2205
2206 static uint64_t vfs_gpfs_disk_free(vfs_handle_struct *handle,
2207                                 const struct smb_filename *smb_fname,
2208                                 uint64_t *bsize,
2209                                 uint64_t *dfree,
2210                                 uint64_t *dsize)
2211 {
2212         struct security_unix_token *utok;
2213         struct gpfs_quotaInfo qi_user = { 0 }, qi_group = { 0 };
2214         struct gpfs_config_data *config;
2215         int err;
2216         time_t cur_time;
2217
2218         SMB_VFS_HANDLE_GET_DATA(handle, config, struct gpfs_config_data,
2219                                 return (uint64_t)-1);
2220         if (!config->dfreequota) {
2221                 return SMB_VFS_NEXT_DISK_FREE(handle, smb_fname,
2222                                               bsize, dfree, dsize);
2223         }
2224
2225         err = sys_fsusage(smb_fname->base_name, dfree, dsize);
2226         if (err) {
2227                 DEBUG (0, ("Could not get fs usage, errno %d\n", errno));
2228                 return SMB_VFS_NEXT_DISK_FREE(handle, smb_fname,
2229                                               bsize, dfree, dsize);
2230         }
2231
2232         /* sys_fsusage returns units of 512 bytes */
2233         *bsize = 512;
2234
2235         DEBUG(10, ("fs dfree %llu, dsize %llu\n",
2236                    (unsigned long long)*dfree, (unsigned long long)*dsize));
2237
2238         utok = handle->conn->session_info->unix_token;
2239
2240         err = get_gpfs_quota(smb_fname->base_name,
2241                         GPFS_USRQUOTA, utok->uid, &qi_user);
2242         if (err) {
2243                 return SMB_VFS_NEXT_DISK_FREE(handle, smb_fname,
2244                                               bsize, dfree, dsize);
2245         }
2246
2247         /*
2248          * If new files created under this folder get this folder's
2249          * GID, then available space is governed by the quota of the
2250          * folder's GID, not the primary group of the creating user.
2251          */
2252         if (VALID_STAT(smb_fname->st) &&
2253             S_ISDIR(smb_fname->st.st_ex_mode) &&
2254             smb_fname->st.st_ex_mode & S_ISGID) {
2255                 become_root();
2256                 err = get_gpfs_quota(smb_fname->base_name, GPFS_GRPQUOTA,
2257                                      smb_fname->st.st_ex_gid, &qi_group);
2258                 unbecome_root();
2259
2260         } else {
2261                 err = get_gpfs_quota(smb_fname->base_name, GPFS_GRPQUOTA,
2262                                      utok->gid, &qi_group);
2263         }
2264
2265         if (err) {
2266                 return SMB_VFS_NEXT_DISK_FREE(handle, smb_fname,
2267                                               bsize, dfree, dsize);
2268         }
2269
2270         cur_time = time(NULL);
2271
2272         /* Adjust free space and size according to quota limits. */
2273         vfs_gpfs_disk_free_quota(qi_user, cur_time, dfree, dsize);
2274         vfs_gpfs_disk_free_quota(qi_group, cur_time, dfree, dsize);
2275
2276         return *dfree / 2;
2277 }
2278
2279 static int vfs_gpfs_get_quota(vfs_handle_struct *handle,
2280                                 const struct smb_filename *smb_fname,
2281                                 enum SMB_QUOTA_TYPE qtype,
2282                                 unid_t id,
2283                                 SMB_DISK_QUOTA *dq)
2284 {
2285         switch(qtype) {
2286                 /*
2287                  * User/group quota are being used for disk-free
2288                  * determination, which in this module is done directly
2289                  * by the disk-free function. It's important that this
2290                  * module does not return wrong quota values by mistake,
2291                  * which would modify the correct values set by disk-free.
2292                  * User/group quota are also being used for processing
2293                  * NT_TRANSACT_GET_USER_QUOTA in smb1 protocol, which is
2294                  * currently not supported by this module.
2295                  */
2296                 case SMB_USER_QUOTA_TYPE:
2297                 case SMB_GROUP_QUOTA_TYPE:
2298                         errno = ENOSYS;
2299                         return -1;
2300                 default:
2301                         return SMB_VFS_NEXT_GET_QUOTA(handle, smb_fname,
2302                                         qtype, id, dq);
2303         }
2304 }
2305
2306 static uint32_t vfs_gpfs_capabilities(struct vfs_handle_struct *handle,
2307                                       enum timestamp_set_resolution *p_ts_res)
2308 {
2309         struct gpfs_config_data *config;
2310         uint32_t next;
2311
2312         next = SMB_VFS_NEXT_FS_CAPABILITIES(handle, p_ts_res);
2313
2314         SMB_VFS_HANDLE_GET_DATA(handle, config,
2315                                 struct gpfs_config_data,
2316                                 return next);
2317
2318         if (config->hsm) {
2319                 next |= FILE_SUPPORTS_REMOTE_STORAGE;
2320         }
2321         return next;
2322 }
2323
2324 static int vfs_gpfs_openat(struct vfs_handle_struct *handle,
2325                            const struct files_struct *dirfsp,
2326                            const struct smb_filename *smb_fname,
2327                            files_struct *fsp,
2328                            int flags,
2329                            mode_t mode)
2330 {
2331         struct gpfs_config_data *config = NULL;
2332         struct gpfs_fsp_extension *ext = NULL;
2333         int ret;
2334
2335         SMB_VFS_HANDLE_GET_DATA(handle, config,
2336                                 struct gpfs_config_data,
2337                                 return -1);
2338
2339         if (config->hsm && !config->recalls &&
2340             !fsp->fsp_flags.is_pathref &&
2341             vfs_gpfs_fsp_is_offline(handle, fsp))
2342         {
2343                 DBG_DEBUG("Refusing access to offline file %s\n",
2344                           fsp_str_dbg(fsp));
2345                 errno = EACCES;
2346                 return -1;
2347         }
2348
2349         if (config->syncio) {
2350                 flags |= O_SYNC;
2351         }
2352
2353         ext = VFS_ADD_FSP_EXTENSION(handle, fsp, struct gpfs_fsp_extension,
2354                                     NULL);
2355         if (ext == NULL) {
2356                 errno = ENOMEM;
2357                 return -1;
2358         }
2359
2360         /*
2361          * Assume the file is offline until gpfs tells us it's online.
2362          */
2363         *ext = (struct gpfs_fsp_extension) { .offline = true };
2364
2365         ret = SMB_VFS_NEXT_OPENAT(handle, dirfsp, smb_fname, fsp, flags, mode);
2366         if (ret == -1) {
2367                 VFS_REMOVE_FSP_EXTENSION(handle, fsp);
2368         }
2369         return ret;
2370 }
2371
2372 static ssize_t vfs_gpfs_pread(vfs_handle_struct *handle, files_struct *fsp,
2373                               void *data, size_t n, off_t offset)
2374 {
2375         ssize_t ret;
2376         bool was_offline;
2377
2378         was_offline = vfs_gpfs_fsp_is_offline(handle, fsp);
2379
2380         ret = SMB_VFS_NEXT_PREAD(handle, fsp, data, n, offset);
2381
2382         if ((ret != -1) && was_offline) {
2383                 notify_fname(handle->conn, NOTIFY_ACTION_MODIFIED,
2384                              FILE_NOTIFY_CHANGE_ATTRIBUTES,
2385                              fsp->fsp_name->base_name);
2386         }
2387
2388         return ret;
2389 }
2390
2391 struct vfs_gpfs_pread_state {
2392         struct files_struct *fsp;
2393         ssize_t ret;
2394         bool was_offline;
2395         struct vfs_aio_state vfs_aio_state;
2396 };
2397
2398 static void vfs_gpfs_pread_done(struct tevent_req *subreq);
2399
2400 static struct tevent_req *vfs_gpfs_pread_send(struct vfs_handle_struct *handle,
2401                                               TALLOC_CTX *mem_ctx,
2402                                               struct tevent_context *ev,
2403                                               struct files_struct *fsp,
2404                                               void *data, size_t n,
2405                                               off_t offset)
2406 {
2407         struct tevent_req *req, *subreq;
2408         struct vfs_gpfs_pread_state *state;
2409
2410         req = tevent_req_create(mem_ctx, &state, struct vfs_gpfs_pread_state);
2411         if (req == NULL) {
2412                 return NULL;
2413         }
2414         state->was_offline = vfs_gpfs_fsp_is_offline(handle, fsp);
2415         state->fsp = fsp;
2416         subreq = SMB_VFS_NEXT_PREAD_SEND(state, ev, handle, fsp, data,
2417                                          n, offset);
2418         if (tevent_req_nomem(subreq, req)) {
2419                 return tevent_req_post(req, ev);
2420         }
2421         tevent_req_set_callback(subreq, vfs_gpfs_pread_done, req);
2422         return req;
2423 }
2424
2425 static void vfs_gpfs_pread_done(struct tevent_req *subreq)
2426 {
2427         struct tevent_req *req = tevent_req_callback_data(
2428                 subreq, struct tevent_req);
2429         struct vfs_gpfs_pread_state *state = tevent_req_data(
2430                 req, struct vfs_gpfs_pread_state);
2431
2432         state->ret = SMB_VFS_PREAD_RECV(subreq, &state->vfs_aio_state);
2433         TALLOC_FREE(subreq);
2434         tevent_req_done(req);
2435 }
2436
2437 static ssize_t vfs_gpfs_pread_recv(struct tevent_req *req,
2438                                    struct vfs_aio_state *vfs_aio_state)
2439 {
2440         struct vfs_gpfs_pread_state *state = tevent_req_data(
2441                 req, struct vfs_gpfs_pread_state);
2442         struct files_struct *fsp = state->fsp;
2443
2444         if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
2445                 return -1;
2446         }
2447         *vfs_aio_state = state->vfs_aio_state;
2448
2449         if ((state->ret != -1) && state->was_offline) {
2450                 DEBUG(10, ("sending notify\n"));
2451                 notify_fname(fsp->conn, NOTIFY_ACTION_MODIFIED,
2452                              FILE_NOTIFY_CHANGE_ATTRIBUTES,
2453                              fsp->fsp_name->base_name);
2454         }
2455
2456         return state->ret;
2457 }
2458
2459 static ssize_t vfs_gpfs_pwrite(vfs_handle_struct *handle, files_struct *fsp,
2460                                const void *data, size_t n, off_t offset)
2461 {
2462         ssize_t ret;
2463         bool was_offline;
2464
2465         was_offline = vfs_gpfs_fsp_is_offline(handle, fsp);
2466
2467         ret = SMB_VFS_NEXT_PWRITE(handle, fsp, data, n, offset);
2468
2469         if ((ret != -1) && was_offline) {
2470                 notify_fname(handle->conn, NOTIFY_ACTION_MODIFIED,
2471                              FILE_NOTIFY_CHANGE_ATTRIBUTES,
2472                              fsp->fsp_name->base_name);
2473         }
2474
2475         return ret;
2476 }
2477
2478 struct vfs_gpfs_pwrite_state {
2479         struct files_struct *fsp;
2480         ssize_t ret;
2481         bool was_offline;
2482         struct vfs_aio_state vfs_aio_state;
2483 };
2484
2485 static void vfs_gpfs_pwrite_done(struct tevent_req *subreq);
2486
2487 static struct tevent_req *vfs_gpfs_pwrite_send(
2488         struct vfs_handle_struct *handle,
2489         TALLOC_CTX *mem_ctx,
2490         struct tevent_context *ev,
2491         struct files_struct *fsp,
2492         const void *data, size_t n,
2493         off_t offset)
2494 {
2495         struct tevent_req *req, *subreq;
2496         struct vfs_gpfs_pwrite_state *state;
2497
2498         req = tevent_req_create(mem_ctx, &state, struct vfs_gpfs_pwrite_state);
2499         if (req == NULL) {
2500                 return NULL;
2501         }
2502         state->was_offline = vfs_gpfs_fsp_is_offline(handle, fsp);
2503         state->fsp = fsp;
2504         subreq = SMB_VFS_NEXT_PWRITE_SEND(state, ev, handle, fsp, data,
2505                                          n, offset);
2506         if (tevent_req_nomem(subreq, req)) {
2507                 return tevent_req_post(req, ev);
2508         }
2509         tevent_req_set_callback(subreq, vfs_gpfs_pwrite_done, req);
2510         return req;
2511 }
2512
2513 static void vfs_gpfs_pwrite_done(struct tevent_req *subreq)
2514 {
2515         struct tevent_req *req = tevent_req_callback_data(
2516                 subreq, struct tevent_req);
2517         struct vfs_gpfs_pwrite_state *state = tevent_req_data(
2518                 req, struct vfs_gpfs_pwrite_state);
2519
2520         state->ret = SMB_VFS_PWRITE_RECV(subreq, &state->vfs_aio_state);
2521         TALLOC_FREE(subreq);
2522         tevent_req_done(req);
2523 }
2524
2525 static ssize_t vfs_gpfs_pwrite_recv(struct tevent_req *req,
2526                                     struct vfs_aio_state *vfs_aio_state)
2527 {
2528         struct vfs_gpfs_pwrite_state *state = tevent_req_data(
2529                 req, struct vfs_gpfs_pwrite_state);
2530         struct files_struct *fsp = state->fsp;
2531
2532         if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
2533                 return -1;
2534         }
2535         *vfs_aio_state = state->vfs_aio_state;
2536
2537         if ((state->ret != -1) && state->was_offline) {
2538                 DEBUG(10, ("sending notify\n"));
2539                 notify_fname(fsp->conn, NOTIFY_ACTION_MODIFIED,
2540                              FILE_NOTIFY_CHANGE_ATTRIBUTES,
2541                              fsp->fsp_name->base_name);
2542         }
2543
2544         return state->ret;
2545 }
2546
2547
2548 static struct vfs_fn_pointers vfs_gpfs_fns = {
2549         .connect_fn = vfs_gpfs_connect,
2550         .disk_free_fn = vfs_gpfs_disk_free,
2551         .get_quota_fn = vfs_gpfs_get_quota,
2552         .fs_capabilities_fn = vfs_gpfs_capabilities,
2553         .filesystem_sharemode_fn = vfs_gpfs_filesystem_sharemode,
2554         .linux_setlease_fn = vfs_gpfs_setlease,
2555         .get_real_filename_at_fn = vfs_gpfs_get_real_filename_at,
2556         .get_dos_attributes_send_fn = vfs_not_implemented_get_dos_attributes_send,
2557         .get_dos_attributes_recv_fn = vfs_not_implemented_get_dos_attributes_recv,
2558         .fget_dos_attributes_fn = vfs_gpfs_fget_dos_attributes,
2559         .fset_dos_attributes_fn = vfs_gpfs_fset_dos_attributes,
2560         .fget_nt_acl_fn = gpfsacl_fget_nt_acl,
2561         .fset_nt_acl_fn = gpfsacl_fset_nt_acl,
2562         .sys_acl_get_fd_fn = gpfsacl_sys_acl_get_fd,
2563         .sys_acl_blob_get_fd_fn = gpfsacl_sys_acl_blob_get_fd,
2564         .sys_acl_set_fd_fn = gpfsacl_sys_acl_set_fd,
2565         .sys_acl_delete_def_fd_fn = gpfsacl_sys_acl_delete_def_fd,
2566         .fchmod_fn = vfs_gpfs_fchmod,
2567         .close_fn = vfs_gpfs_close,
2568         .stat_fn = vfs_gpfs_stat,
2569         .lstat_fn = vfs_gpfs_lstat,
2570         .fntimes_fn = vfs_gpfs_fntimes,
2571         .aio_force_fn = vfs_gpfs_aio_force,
2572         .sendfile_fn = vfs_gpfs_sendfile,
2573         .fallocate_fn = vfs_gpfs_fallocate,
2574         .openat_fn = vfs_gpfs_openat,
2575         .pread_fn = vfs_gpfs_pread,
2576         .pread_send_fn = vfs_gpfs_pread_send,
2577         .pread_recv_fn = vfs_gpfs_pread_recv,
2578         .pwrite_fn = vfs_gpfs_pwrite,
2579         .pwrite_send_fn = vfs_gpfs_pwrite_send,
2580         .pwrite_recv_fn = vfs_gpfs_pwrite_recv,
2581         .ftruncate_fn = vfs_gpfs_ftruncate
2582 };
2583
2584 static_decl_vfs;
2585 NTSTATUS vfs_gpfs_init(TALLOC_CTX *ctx)
2586 {
2587         int ret;
2588
2589         ret = gpfswrap_init();
2590         if (ret != 0) {
2591                 DEBUG(1, ("Could not initialize GPFS library wrapper\n"));
2592         }
2593
2594         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "gpfs",
2595                                 &vfs_gpfs_fns);
2596 }