Whamcloud - gitweb
LU-7898 osd: remove unnecessary declarations
[fs/lustre-release.git] / lustre / osd-zfs / osd_xattr.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2012, 2015, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/osd-zfs/osd_xattr.c
37  * functions to manipulate extended attributes and system attributes
38  *
39  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
40  * Author: Mike Pershin <tappro@whamcloud.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_OSD
44
45 #include <lustre_ver.h>
46 #include <libcfs/libcfs.h>
47 #include <obd_support.h>
48 #include <lustre_net.h>
49 #include <obd.h>
50 #include <obd_class.h>
51 #include <lustre_disk.h>
52 #include <lustre_fid.h>
53
54 #include "osd_internal.h"
55
56 #include <sys/dnode.h>
57 #include <sys/dbuf.h>
58 #include <sys/spa.h>
59 #include <sys/stat.h>
60 #include <sys/zap.h>
61 #include <sys/spa_impl.h>
62 #include <sys/zfs_znode.h>
63 #include <sys/dmu_tx.h>
64 #include <sys/dmu_objset.h>
65 #include <sys/dsl_prop.h>
66 #include <sys/sa_impl.h>
67 #include <sys/txg.h>
68
69 #include <linux/posix_acl_xattr.h>
70
71
72 int __osd_xattr_load(struct osd_device *osd, uint64_t dnode, nvlist_t **sa)
73 {
74         sa_handle_t *sa_hdl;
75         char        *buf;
76         int          rc, size;
77
78         if (unlikely(dnode == ZFS_NO_OBJECT))
79                 return -ENOENT;
80
81         rc = -sa_handle_get(osd->od_os, dnode, NULL, SA_HDL_PRIVATE, &sa_hdl);
82         if (rc)
83                 return rc;
84
85         rc = -sa_size(sa_hdl, SA_ZPL_DXATTR(osd), &size);
86         if (rc) {
87                 if (rc == -ENOENT)
88                         rc = -nvlist_alloc(sa, NV_UNIQUE_NAME, KM_SLEEP);
89                 goto out_sa;
90         }
91
92         buf = osd_zio_buf_alloc(size);
93         if (buf == NULL) {
94                 rc = -ENOMEM;
95                 goto out_sa;
96         }
97         rc = -sa_lookup(sa_hdl, SA_ZPL_DXATTR(osd), buf, size);
98         if (rc == 0)
99                 rc = -nvlist_unpack(buf, size, sa, KM_SLEEP);
100         osd_zio_buf_free(buf, size);
101 out_sa:
102         sa_handle_destroy(sa_hdl);
103
104         return rc;
105 }
106
107 static inline int __osd_xattr_cache(const struct lu_env *env,
108                                     struct osd_object *obj)
109 {
110         LASSERT(obj->oo_sa_xattr == NULL);
111         LASSERT(obj->oo_db != NULL);
112
113         return __osd_xattr_load(osd_obj2dev(obj), obj->oo_db->db_object,
114                                 &obj->oo_sa_xattr);
115 }
116
117 static int
118 __osd_sa_xattr_get(const struct lu_env *env, struct osd_object *obj,
119                    const struct lu_buf *buf, const char *name, int *sizep)
120 {
121         uchar_t *nv_value;
122         int      rc;
123
124         LASSERT(obj->oo_sa_hdl);
125
126         if (obj->oo_sa_xattr == NULL) {
127                 rc = __osd_xattr_cache(env, obj);
128                 if (rc)
129                         return rc;
130         }
131
132         LASSERT(obj->oo_sa_xattr);
133         rc = -nvlist_lookup_byte_array(obj->oo_sa_xattr, name, &nv_value,
134                         sizep);
135         if (rc)
136                 return rc;
137
138         if (buf == NULL || buf->lb_buf == NULL) {
139                 /* return the required size by *sizep */
140                 return 0;
141         }
142
143         if (*sizep > buf->lb_len)
144                 return -ERANGE; /* match ldiskfs error */
145
146         memcpy(buf->lb_buf, nv_value, *sizep);
147         return 0;
148 }
149
150 int __osd_xattr_get_large(const struct lu_env *env, struct osd_device *osd,
151                           uint64_t xattr, struct lu_buf *buf,
152                           const char *name, int *sizep)
153 {
154         dmu_buf_t       *xa_data_db;
155         sa_handle_t     *sa_hdl = NULL;
156         uint64_t         xa_data_obj, size;
157         int              rc;
158
159         /* are there any extended attributes? */
160         if (xattr == ZFS_NO_OBJECT)
161                 return -ENOENT;
162
163         /* Lookup the object number containing the xattr data */
164         rc = -zap_lookup(osd->od_os, xattr, name, sizeof(uint64_t), 1,
165                         &xa_data_obj);
166         if (rc)
167                 return rc;
168
169         rc = __osd_obj2dbuf(env, osd->od_os, xa_data_obj, &xa_data_db);
170         if (rc)
171                 return rc;
172
173         rc = -sa_handle_get(osd->od_os, xa_data_obj, NULL, SA_HDL_PRIVATE,
174                         &sa_hdl);
175         if (rc)
176                 goto out_rele;
177
178         /* Get the xattr value length / object size */
179         rc = -sa_lookup(sa_hdl, SA_ZPL_SIZE(osd), &size, 8);
180         if (rc)
181                 goto out;
182
183         if (size > INT_MAX) {
184                 rc = -EOVERFLOW;
185                 goto out;
186         }
187
188         *sizep = (int)size;
189
190         if (buf == NULL || buf->lb_buf == NULL) {
191                 /* We only need to return the required size */
192                 goto out;
193         }
194         if (*sizep > buf->lb_len) {
195                 rc = -ERANGE; /* match ldiskfs error */
196                 goto out;
197         }
198
199         rc = -dmu_read(osd->od_os, xa_data_db->db_object, 0,
200                         size, buf->lb_buf, DMU_READ_PREFETCH);
201
202 out:
203         sa_handle_destroy(sa_hdl);
204 out_rele:
205         dmu_buf_rele(xa_data_db, FTAG);
206
207         return rc;
208 }
209
210 /**
211  * Copy an extended attribute into the buffer provided, or compute
212  * the required buffer size if \a buf is NULL.
213  *
214  * On success, the number of bytes used or required is stored in \a sizep.
215  *
216  * Note that no locking is done here.
217  *
218  * \param[in] env      execution environment
219  * \param[in] obj      object for which to retrieve xattr
220  * \param[out] buf     buffer to store xattr value in
221  * \param[in] name     name of xattr to copy
222  * \param[out] sizep   bytes used or required to store xattr
223  *
224  * \retval 0           on success
225  * \retval negative    negated errno on failure
226  */
227 int __osd_xattr_get(const struct lu_env *env, struct osd_object *obj,
228                     struct lu_buf *buf, const char *name, int *sizep)
229 {
230         int rc;
231
232         if (unlikely(!dt_object_exists(&obj->oo_dt) || obj->oo_destroyed))
233                 return -ENOENT;
234
235         /* check SA_ZPL_DXATTR first then fallback to directory xattr */
236         rc = __osd_sa_xattr_get(env, obj, buf, name, sizep);
237         if (rc != -ENOENT)
238                 return rc;
239
240         return __osd_xattr_get_large(env, osd_obj2dev(obj), obj->oo_xattr,
241                                      buf, name, sizep);
242 }
243
244 int osd_xattr_get(const struct lu_env *env, struct dt_object *dt,
245                   struct lu_buf *buf, const char *name)
246 {
247         struct osd_object  *obj  = osd_dt_obj(dt);
248         int                 rc, size = 0;
249         ENTRY;
250
251         LASSERT(obj->oo_db != NULL);
252         LASSERT(osd_invariant(obj));
253
254         if (!osd_obj2dev(obj)->od_posix_acl &&
255             (strcmp(name, XATTR_NAME_POSIX_ACL_ACCESS) == 0 ||
256              strcmp(name, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
257                 RETURN(-EOPNOTSUPP);
258
259         down_read(&obj->oo_guard);
260         rc = __osd_xattr_get(env, obj, buf, name, &size);
261         up_read(&obj->oo_guard);
262
263         if (rc == -ENOENT)
264                 rc = -ENODATA;
265         else if (rc == 0)
266                 rc = size;
267         RETURN(rc);
268 }
269
270 /* the function is used to declare EAs when SA is not supported */
271 void __osd_xattr_declare_legacy(const struct lu_env *env,
272                                 struct osd_object *obj,
273                                 int vallen, const char *name,
274                                 struct osd_thandle *oh)
275 {
276         struct osd_device *osd = osd_obj2dev(obj);
277         dmu_tx_t *tx = oh->ot_tx;
278         uint64_t xa_data_obj;
279         int rc;
280
281         if (obj->oo_xattr == ZFS_NO_OBJECT) {
282                 /* xattr zap + entry */
283                 dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, TRUE, (char *) name);
284                 /* xattr value obj */
285                 dmu_tx_hold_sa_create(tx, ZFS_SA_BASE_ATTR_SIZE);
286                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0, vallen);
287                 return;
288         }
289
290         rc = -zap_lookup(osd->od_os, obj->oo_xattr, name, sizeof(uint64_t), 1,
291                         &xa_data_obj);
292         if (rc == 0) {
293                 /*
294                  * Entry already exists.
295                  * We'll truncate the existing object.
296                  */
297                 dmu_tx_hold_bonus(tx, xa_data_obj);
298                 dmu_tx_hold_free(tx, xa_data_obj, vallen, DMU_OBJECT_END);
299                 dmu_tx_hold_write(tx, xa_data_obj, 0, vallen);
300         } else if (rc == -ENOENT) {
301                 /*
302                  * Entry doesn't exist, we need to create a new one and a new
303                  * object to store the value.
304                  */
305                 dmu_tx_hold_bonus(tx, obj->oo_xattr);
306                 dmu_tx_hold_zap(tx, obj->oo_xattr, TRUE, (char *) name);
307                 dmu_tx_hold_sa_create(tx, ZFS_SA_BASE_ATTR_SIZE);
308                 dmu_tx_hold_write(tx, DMU_NEW_OBJECT, 0, vallen);
309         }
310 }
311
312 void __osd_xattr_declare_set(const struct lu_env *env, struct osd_object *obj,
313                              int vallen, const char *name,
314                              struct osd_thandle *oh)
315 {
316         dmu_buf_t         *db = obj->oo_db;
317         dmu_tx_t          *tx = oh->ot_tx;
318
319         if (unlikely(obj->oo_destroyed))
320                 return;
321
322         if (unlikely(!osd_obj2dev(obj)->od_xattr_in_sa)) {
323                 __osd_xattr_declare_legacy(env, obj, vallen, name, oh);
324                 return;
325         }
326
327         /* declare EA in SA */
328         if (dt_object_exists(&obj->oo_dt)) {
329                 LASSERT(obj->oo_sa_hdl);
330                 /* XXX: it should be possible to skip spill
331                  * declaration if specific EA is part of
332                  * bonus and doesn't grow */
333                 dmu_tx_hold_spill(tx, db->db_object);
334                 return;
335         }
336
337         /* the object doesn't exist, but we've declared bonus
338          * in osd_declare_object_create() yet */
339         if (obj->oo_ea_in_bonus > DN_MAX_BONUSLEN) {
340                 /* spill has been declared already */
341         } else if (obj->oo_ea_in_bonus + vallen > DN_MAX_BONUSLEN) {
342                 /* we're about to exceed bonus, let's declare spill */
343                 dmu_tx_hold_spill(tx, DMU_NEW_OBJECT);
344         }
345         obj->oo_ea_in_bonus += vallen;
346 }
347
348 int osd_declare_xattr_set(const struct lu_env *env, struct dt_object *dt,
349                           const struct lu_buf *buf, const char *name,
350                           int fl, struct thandle *handle)
351 {
352         struct osd_object  *obj = osd_dt_obj(dt);
353         struct osd_thandle *oh;
354         ENTRY;
355
356         LASSERT(handle != NULL);
357         oh = container_of0(handle, struct osd_thandle, ot_super);
358
359         down_read(&obj->oo_guard);
360         __osd_xattr_declare_set(env, obj, buf->lb_len, name, oh);
361         up_read(&obj->oo_guard);
362
363         RETURN(0);
364 }
365
366 /*
367  * Set an extended attribute.
368  * This transaction must have called udmu_xattr_declare_set() first.
369  *
370  * Returns 0 on success or a negative error number on failure.
371  *
372  * No locking is done here.
373  */
374 static int
375 __osd_sa_xattr_update(const struct lu_env *env, struct osd_object *obj,
376                       struct osd_thandle *oh)
377 {
378         struct osd_device *osd = osd_obj2dev(obj);
379         char              *dxattr;
380         size_t             sa_size;
381         int                rc;
382
383         ENTRY;
384         LASSERT(obj->oo_sa_hdl);
385         LASSERT(obj->oo_sa_xattr);
386
387         /* Update the SA for additions, modifications, and removals. */
388         rc = -nvlist_size(obj->oo_sa_xattr, &sa_size, NV_ENCODE_XDR);
389         if (rc)
390                 return rc;
391
392         dxattr = osd_zio_buf_alloc(sa_size);
393         if (dxattr == NULL)
394                 RETURN(-ENOMEM);
395
396         rc = -nvlist_pack(obj->oo_sa_xattr, &dxattr, &sa_size,
397                                 NV_ENCODE_XDR, KM_SLEEP);
398         if (rc)
399                 GOTO(out_free, rc);
400
401         rc = osd_object_sa_update(obj, SA_ZPL_DXATTR(osd), dxattr, sa_size, oh);
402 out_free:
403         osd_zio_buf_free(dxattr, sa_size);
404         RETURN(rc);
405 }
406
407 int __osd_sa_xattr_set(const struct lu_env *env, struct osd_object *obj,
408                        const struct lu_buf *buf, const char *name, int fl,
409                        struct osd_thandle *oh)
410 {
411         uchar_t *nv_value;
412         size_t  size;
413         int     nv_size;
414         int     rc;
415         int     too_big = 0;
416
417         LASSERT(obj->oo_sa_hdl);
418         if (obj->oo_sa_xattr == NULL) {
419                 rc = __osd_xattr_cache(env, obj);
420                 if (rc)
421                         return rc;
422         }
423
424         LASSERT(obj->oo_sa_xattr);
425         /* Limited to 32k to keep nvpair memory allocations small */
426         if (buf->lb_len > DXATTR_MAX_ENTRY_SIZE) {
427                 too_big = 1;
428         } else {
429                 /* Prevent the DXATTR SA from consuming the entire SA
430                  * region */
431                 rc = -nvlist_size(obj->oo_sa_xattr, &size, NV_ENCODE_XDR);
432                 if (rc)
433                         return rc;
434
435                 if (size + buf->lb_len > DXATTR_MAX_SA_SIZE)
436                         too_big = 1;
437         }
438
439         /* even in case of -EFBIG we must lookup xattr and check can we
440          * rewrite it then delete from SA */
441         rc = -nvlist_lookup_byte_array(obj->oo_sa_xattr, name, &nv_value,
442                                         &nv_size);
443         if (rc == 0) {
444                 if (fl & LU_XATTR_CREATE) {
445                         return -EEXIST;
446                 } else if (too_big) {
447                         rc = -nvlist_remove(obj->oo_sa_xattr, name,
448                                                 DATA_TYPE_BYTE_ARRAY);
449                         if (rc < 0)
450                                 return rc;
451                         rc = __osd_sa_xattr_update(env, obj, oh);
452                         return rc == 0 ? -EFBIG : rc;
453                 }
454         } else if (rc == -ENOENT) {
455                 if (fl & LU_XATTR_REPLACE)
456                         return -ENODATA;
457                 else if (too_big)
458                         return -EFBIG;
459         } else {
460                 return rc;
461         }
462
463         /* Ensure xattr doesn't exist in ZAP */
464         if (obj->oo_xattr != ZFS_NO_OBJECT) {
465                 struct osd_device *osd = osd_obj2dev(obj);
466                 uint64_t           objid;
467                 rc = -zap_lookup(osd->od_os, obj->oo_xattr,
468                                  name, 8, 1, &objid);
469                 if (rc == 0) {
470                         rc = -dmu_object_free(osd->od_os, objid, oh->ot_tx);
471                         if (rc == 0)
472                                 zap_remove(osd->od_os, obj->oo_xattr,
473                                            name, oh->ot_tx);
474                 }
475         }
476
477         rc = -nvlist_add_byte_array(obj->oo_sa_xattr, name,
478                                     (uchar_t *)buf->lb_buf, buf->lb_len);
479         if (rc)
480                 return rc;
481
482         rc = __osd_sa_xattr_update(env, obj, oh);
483         return rc;
484 }
485
486 int
487 __osd_xattr_set(const struct lu_env *env, struct osd_object *obj,
488                 const struct lu_buf *buf, const char *name, int fl,
489                 struct osd_thandle *oh)
490 {
491         struct osd_device *osd = osd_obj2dev(obj);
492         dmu_buf_t         *xa_zap_db = NULL;
493         dmu_buf_t         *xa_data_db = NULL;
494         uint64_t           xa_data_obj;
495         sa_handle_t       *sa_hdl = NULL;
496         dmu_tx_t          *tx = oh->ot_tx;
497         uint64_t           size;
498         int                rc;
499
500         LASSERT(obj->oo_sa_hdl);
501
502         if (obj->oo_xattr == ZFS_NO_OBJECT) {
503                 struct lu_attr *la = &osd_oti_get(env)->oti_la;
504
505                 la->la_valid = LA_MODE;
506                 la->la_mode = S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO;
507                 rc = __osd_zap_create(env, osd, &xa_zap_db, tx, la, 0);
508                 if (rc)
509                         return rc;
510
511                 obj->oo_xattr = xa_zap_db->db_object;
512                 rc = osd_object_sa_update(obj, SA_ZPL_XATTR(osd),
513                                 &obj->oo_xattr, 8, oh);
514                 if (rc)
515                         goto out;
516         }
517
518         rc = -zap_lookup(osd->od_os, obj->oo_xattr, name, sizeof(uint64_t), 1,
519                          &xa_data_obj);
520         if (rc == 0) {
521                 if (fl & LU_XATTR_CREATE) {
522                         rc = -EEXIST;
523                         goto out;
524                 }
525                 /*
526                  * Entry already exists.
527                  * We'll truncate the existing object.
528                  */
529                 rc = __osd_obj2dbuf(env, osd->od_os, xa_data_obj,
530                                         &xa_data_db);
531                 if (rc)
532                         goto out;
533
534                 rc = -sa_handle_get(osd->od_os, xa_data_obj, NULL,
535                                         SA_HDL_PRIVATE, &sa_hdl);
536                 if (rc)
537                         goto out;
538
539                 rc = -sa_lookup(sa_hdl, SA_ZPL_SIZE(osd), &size, 8);
540                 if (rc)
541                         goto out_sa;
542
543                 rc = -dmu_free_range(osd->od_os, xa_data_db->db_object,
544                                      0, DMU_OBJECT_END, tx);
545                 if (rc)
546                         goto out_sa;
547         } else if (rc == -ENOENT) {
548                 struct lu_attr *la = &osd_oti_get(env)->oti_la;
549                 /*
550                  * Entry doesn't exist, we need to create a new one and a new
551                  * object to store the value.
552                  */
553                 if (fl & LU_XATTR_REPLACE) {
554                         /* should be ENOATTR according to the
555                          * man, but that is undefined here */
556                         rc = -ENODATA;
557                         goto out;
558                 }
559
560                 la->la_valid = LA_MODE;
561                 la->la_mode = S_IFREG | S_IRUGO | S_IWUSR;
562                 rc = __osd_object_create(env, obj, &xa_data_db, tx, la);
563                 if (rc)
564                         goto out;
565                 xa_data_obj = xa_data_db->db_object;
566
567                 rc = -sa_handle_get(osd->od_os, xa_data_obj, NULL,
568                                         SA_HDL_PRIVATE, &sa_hdl);
569                 if (rc)
570                         goto out;
571
572                 rc = -zap_add(osd->od_os, obj->oo_xattr, name, sizeof(uint64_t),
573                                 1, &xa_data_obj, tx);
574                 if (rc)
575                         goto out_sa;
576         } else {
577                 /* There was an error looking up the xattr name */
578                 goto out;
579         }
580
581         /* Finally write the xattr value */
582         dmu_write(osd->od_os, xa_data_obj, 0, buf->lb_len, buf->lb_buf, tx);
583
584         size = buf->lb_len;
585         rc = -sa_update(sa_hdl, SA_ZPL_SIZE(osd), &size, 8, tx);
586
587 out_sa:
588         sa_handle_destroy(sa_hdl);
589 out:
590         if (xa_data_db != NULL)
591                 dmu_buf_rele(xa_data_db, FTAG);
592         if (xa_zap_db != NULL)
593                 dmu_buf_rele(xa_zap_db, FTAG);
594
595         return rc;
596 }
597
598 int osd_xattr_set(const struct lu_env *env, struct dt_object *dt,
599                   const struct lu_buf *buf, const char *name, int fl,
600                   struct thandle *handle)
601 {
602         struct osd_object  *obj = osd_dt_obj(dt);
603         struct osd_thandle *oh;
604         int rc = 0;
605         ENTRY;
606
607         LASSERT(handle != NULL);
608         LASSERT(osd_invariant(obj));
609
610         if (!osd_obj2dev(obj)->od_posix_acl &&
611             (strcmp(name, XATTR_NAME_POSIX_ACL_ACCESS) == 0 ||
612              strcmp(name, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
613                 RETURN(-EOPNOTSUPP);
614
615         if (OBD_FAIL_CHECK(OBD_FAIL_LFSCK_LINKEA_OVERFLOW) &&
616             strcmp(name, XATTR_NAME_LINK) == 0)
617                 RETURN(-ENOSPC);
618
619         oh = container_of0(handle, struct osd_thandle, ot_super);
620
621         down_write(&obj->oo_guard);
622         CDEBUG(D_INODE, "Setting xattr %s with size %d\n",
623                 name, (int)buf->lb_len);
624         rc = osd_xattr_set_internal(env, obj, buf, name, fl, oh);
625         up_write(&obj->oo_guard);
626
627         RETURN(rc);
628 }
629
630 static void
631 __osd_xattr_declare_del(const struct lu_env *env, struct osd_object *obj,
632                         const char *name, struct osd_thandle *oh)
633 {
634         struct osd_device *osd = osd_obj2dev(obj);
635         dmu_tx_t          *tx = oh->ot_tx;
636         uint64_t           xa_data_obj;
637         int                rc;
638
639         /* update SA_ZPL_DXATTR if xattr was in SA */
640         dmu_tx_hold_sa(tx, obj->oo_sa_hdl, 0);
641
642         if (obj->oo_xattr == ZFS_NO_OBJECT)
643                 return;
644
645         rc = -zap_lookup(osd->od_os, obj->oo_xattr, name, 8, 1, &xa_data_obj);
646         if (rc == 0) {
647                 /*
648                  * Entry exists.
649                  * We'll delete the existing object and ZAP entry.
650                  */
651                 dmu_tx_hold_bonus(tx, xa_data_obj);
652                 dmu_tx_hold_free(tx, xa_data_obj, 0, DMU_OBJECT_END);
653                 dmu_tx_hold_zap(tx, obj->oo_xattr, FALSE, (char *) name);
654                 return;
655         } else if (rc == -ENOENT) {
656                 /*
657                  * Entry doesn't exist, nothing to be changed.
658                  */
659                 return;
660         }
661
662         /* An error happened */
663         tx->tx_err = -rc;
664 }
665
666 int osd_declare_xattr_del(const struct lu_env *env, struct dt_object *dt,
667                           const char *name, struct thandle *handle)
668 {
669         struct osd_object  *obj = osd_dt_obj(dt);
670         struct osd_thandle *oh;
671         ENTRY;
672
673         LASSERT(handle != NULL);
674         LASSERT(osd_invariant(obj));
675
676         oh = container_of0(handle, struct osd_thandle, ot_super);
677         LASSERT(oh->ot_tx != NULL);
678         LASSERT(obj->oo_db != NULL);
679
680         down_read(&obj->oo_guard);
681         if (likely(dt_object_exists(&obj->oo_dt) && !obj->oo_destroyed))
682                 __osd_xattr_declare_del(env, obj, name, oh);
683         up_read(&obj->oo_guard);
684
685         RETURN(0);
686 }
687
688 static int __osd_sa_xattr_del(const struct lu_env *env, struct osd_object *obj,
689                               const char *name, struct osd_thandle *oh)
690 {
691         int rc;
692
693         if (obj->oo_sa_xattr == NULL) {
694                 rc = __osd_xattr_cache(env, obj);
695                 if (rc)
696                         return rc;
697         }
698
699         rc = -nvlist_remove(obj->oo_sa_xattr, name, DATA_TYPE_BYTE_ARRAY);
700         if (rc == 0)
701                 rc = __osd_sa_xattr_update(env, obj, oh);
702         return rc;
703 }
704
705 static int __osd_xattr_del(const struct lu_env *env, struct osd_object *obj,
706                            const char *name, struct osd_thandle *oh)
707 {
708         struct osd_device *osd = osd_obj2dev(obj);
709         uint64_t           xa_data_obj;
710         int                rc;
711
712         if (unlikely(!dt_object_exists(&obj->oo_dt) || obj->oo_destroyed))
713                 return -ENOENT;
714
715         /* try remove xattr from SA at first */
716         rc = __osd_sa_xattr_del(env, obj, name, oh);
717         if (rc != -ENOENT)
718                 return rc;
719
720         if (obj->oo_xattr == ZFS_NO_OBJECT)
721                 return 0;
722
723         rc = -zap_lookup(osd->od_os, obj->oo_xattr, name, sizeof(uint64_t), 1,
724                         &xa_data_obj);
725         if (rc == -ENOENT) {
726                 rc = 0;
727         } else if (rc == 0) {
728                 /*
729                  * Entry exists.
730                  * We'll delete the existing object and ZAP entry.
731                  */
732                 rc = -dmu_object_free(osd->od_os, xa_data_obj, oh->ot_tx);
733                 if (rc)
734                         return rc;
735
736                 rc = -zap_remove(osd->od_os, obj->oo_xattr, name, oh->ot_tx);
737         }
738
739         return rc;
740 }
741
742 int osd_xattr_del(const struct lu_env *env, struct dt_object *dt,
743                   const char *name, struct thandle *handle)
744 {
745         struct osd_object  *obj = osd_dt_obj(dt);
746         struct osd_thandle *oh;
747         int                 rc;
748         ENTRY;
749
750         LASSERT(handle != NULL);
751         LASSERT(obj->oo_db != NULL);
752         LASSERT(osd_invariant(obj));
753         LASSERT(dt_object_exists(dt));
754         oh = container_of0(handle, struct osd_thandle, ot_super);
755         LASSERT(oh->ot_tx != NULL);
756
757         if (!osd_obj2dev(obj)->od_posix_acl &&
758             (strcmp(name, XATTR_NAME_POSIX_ACL_ACCESS) == 0 ||
759              strcmp(name, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
760                 RETURN(-EOPNOTSUPP);
761
762         down_write(&obj->oo_guard);
763         rc = __osd_xattr_del(env, obj, name, oh);
764         up_write(&obj->oo_guard);
765
766         RETURN(rc);
767 }
768
769 void osd_declare_xattrs_destroy(const struct lu_env *env,
770                                 struct osd_object *obj, struct osd_thandle *oh)
771 {
772         struct osd_device *osd = osd_obj2dev(obj);
773         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
774         uint64_t           oid = obj->oo_xattr, xid;
775         dmu_tx_t          *tx = oh->ot_tx;
776         zap_cursor_t      *zc;
777         int                rc;
778
779         if (oid == ZFS_NO_OBJECT)
780                 return; /* Nothing to do for SA xattrs */
781
782         /* Declare to free the ZAP holding xattrs */
783         dmu_tx_hold_free(tx, oid, 0, DMU_OBJECT_END);
784
785         rc = osd_zap_cursor_init(&zc, osd->od_os, oid, 0);
786         if (rc)
787                 goto out;
788
789         while (zap_cursor_retrieve(zc, za) == 0) {
790                 LASSERT(za->za_num_integers == 1);
791                 LASSERT(za->za_integer_length == sizeof(uint64_t));
792
793                 rc = -zap_lookup(osd->od_os, oid, za->za_name,
794                                  sizeof(uint64_t), 1, &xid);
795                 if (rc) {
796                         CERROR("%s: xattr %s lookup failed: rc = %d\n",
797                                osd->od_svname, za->za_name, rc);
798                         break;
799                 }
800                 dmu_tx_hold_free(tx, xid, 0, DMU_OBJECT_END);
801
802                 zap_cursor_advance(zc);
803         }
804
805         osd_zap_cursor_fini(zc);
806 out:
807         if (rc && tx->tx_err == 0)
808                 tx->tx_err = -rc;
809 }
810
811 int osd_xattrs_destroy(const struct lu_env *env,
812                        struct osd_object *obj, struct osd_thandle *oh)
813 {
814         struct osd_device *osd = osd_obj2dev(obj);
815         dmu_tx_t          *tx = oh->ot_tx;
816         zap_attribute_t   *za = &osd_oti_get(env)->oti_za;
817         zap_cursor_t      *zc;
818         uint64_t           xid;
819         int                rc;
820
821         /* The transaction must have been assigned to a transaction group. */
822         LASSERT(tx->tx_txg != 0);
823
824         if (obj->oo_xattr == ZFS_NO_OBJECT)
825                 return 0; /* Nothing to do for SA xattrs */
826
827         /* Free the ZAP holding the xattrs */
828         rc = osd_zap_cursor_init(&zc, osd->od_os, obj->oo_xattr, 0);
829         if (rc)
830                 return rc;
831
832         while (zap_cursor_retrieve(zc, za) == 0) {
833                 LASSERT(za->za_num_integers == 1);
834                 LASSERT(za->za_integer_length == sizeof(uint64_t));
835
836                 rc = -zap_lookup(osd->od_os, obj->oo_xattr, za->za_name,
837                                  sizeof(uint64_t), 1, &xid);
838                 if (rc) {
839                         CERROR("%s: lookup xattr %s failed: rc = %d\n",
840                                osd->od_svname, za->za_name, rc);
841                 } else {
842                         rc = -dmu_object_free(osd->od_os, xid, tx);
843                         if (rc)
844                                 CERROR("%s: free xattr %s failed: rc = %d\n",
845                                        osd->od_svname, za->za_name, rc);
846                 }
847                 zap_cursor_advance(zc);
848         }
849         osd_zap_cursor_fini(zc);
850
851         rc = -dmu_object_free(osd->od_os, obj->oo_xattr, tx);
852         if (rc)
853                 CERROR("%s: free xattr "LPU64" failed: rc = %d\n",
854                        osd->od_svname, obj->oo_xattr, rc);
855
856         return rc;
857 }
858
859 static int
860 osd_sa_xattr_list(const struct lu_env *env, struct osd_object *obj,
861                   const struct lu_buf *lb)
862 {
863         nvpair_t *nvp = NULL;
864         int       len, counted = 0;
865         int       rc = 0;
866
867         if (obj->oo_sa_xattr == NULL) {
868                 rc = __osd_xattr_cache(env, obj);
869                 if (rc)
870                         return rc;
871         }
872
873         LASSERT(obj->oo_sa_xattr);
874
875         while ((nvp = nvlist_next_nvpair(obj->oo_sa_xattr, nvp)) != NULL) {
876                 const char *name = nvpair_name(nvp);
877
878                 if (!osd_obj2dev(obj)->od_posix_acl &&
879                     (strcmp(name, XATTR_NAME_POSIX_ACL_ACCESS) == 0 ||
880                      strcmp(name, XATTR_NAME_POSIX_ACL_DEFAULT) == 0))
881                         continue;
882
883                 len = strlen(name);
884                 if (lb->lb_buf != NULL) {
885                         if (counted + len + 1 > lb->lb_len)
886                                 return -ERANGE;
887
888                         memcpy(lb->lb_buf + counted, name, len + 1);
889                 }
890                 counted += len + 1;
891         }
892         return counted;
893 }
894
895 int osd_xattr_list(const struct lu_env *env, struct dt_object *dt,
896                    const struct lu_buf *lb)
897 {
898         struct osd_object      *obj = osd_dt_obj(dt);
899         struct osd_device      *osd = osd_obj2dev(obj);
900         zap_attribute_t        *za = &osd_oti_get(env)->oti_za;
901         zap_cursor_t           *zc;
902         int                    rc, counted;
903         ENTRY;
904
905         LASSERT(obj->oo_db != NULL);
906         LASSERT(osd_invariant(obj));
907         LASSERT(dt_object_exists(dt));
908
909         down_read(&obj->oo_guard);
910
911         rc = osd_sa_xattr_list(env, obj, lb);
912         if (rc < 0)
913                 GOTO(out, rc);
914
915         counted = rc;
916
917         /* continue with dnode xattr if any */
918         if (obj->oo_xattr == ZFS_NO_OBJECT)
919                 GOTO(out, rc = counted);
920
921         rc = osd_zap_cursor_init(&zc, osd->od_os, obj->oo_xattr, 0);
922         if (rc)
923                 GOTO(out, rc);
924
925         while ((rc = -zap_cursor_retrieve(zc, za)) == 0) {
926                 if (!osd_obj2dev(obj)->od_posix_acl &&
927                     (strcmp(za->za_name, XATTR_NAME_POSIX_ACL_ACCESS) == 0 ||
928                      strcmp(za->za_name, XATTR_NAME_POSIX_ACL_DEFAULT) == 0)) {
929                         zap_cursor_advance(zc);
930                         continue;
931                 }
932
933                 rc = strlen(za->za_name);
934                 if (lb->lb_buf != NULL) {
935                         if (counted + rc + 1 > lb->lb_len)
936                                 GOTO(out_fini, rc = -ERANGE);
937
938                         memcpy(lb->lb_buf + counted, za->za_name, rc + 1);
939                 }
940                 counted += rc + 1;
941
942                 zap_cursor_advance(zc);
943         }
944         if (rc == -ENOENT) /* no more kes in the index */
945                 rc = 0;
946         else if (unlikely(rc < 0))
947                 GOTO(out_fini, rc);
948         rc = counted;
949
950 out_fini:
951         osd_zap_cursor_fini(zc);
952 out:
953         up_read(&obj->oo_guard);
954         RETURN(rc);
955
956 }