Whamcloud - gitweb
LU-2449 osd: osd-zfs to initialize parent attribute
[fs/lustre-release.git] / lustre / osd-zfs / osd_internal.h
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 /*
31  * Copyright (c) 2012, Intel Corporation.
32  * Use is subject to license terms.
33  */
34 /*
35  * This file is part of Lustre, http://www.lustre.org/
36  * Lustre is a trademark of Sun Microsystems, Inc.
37  *
38  * lustre/osd-zfs/osd_internal.h
39  * Shared definitions and declarations for zfs/dmu osd
40  *
41  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
42  * Author: Mike Pershin <tappro@whamcloud.com>
43  * Author: Johann Lombardi <johann@whamcloud.com>
44  */
45
46 #ifndef _OSD_INTERNAL_H
47 #define _OSD_INTERNAL_H
48
49 #include <dt_object.h>
50 #include <lustre_quota.h>
51 #include <sys/arc.h>
52
53 #include <sys/nvpair.h>
54
55 #include "udmu.h"
56
57 #define LUSTRE_ROOT_FID_SEQ     0
58 #define DMU_OSD_SVNAME          "svname"
59 #define DMU_OSD_OI_NAME_BASE    "oi"
60
61 #define OSD_GFP_IO              (GFP_NOFS | __GFP_HIGHMEM)
62
63 /**
64  * Iterator's in-memory data structure for quota file.
65  */
66 struct osd_it_quota {
67         struct osd_object       *oiq_obj;
68         /* DMU accounting object id */
69         uint64_t                 oiq_oid;
70         /* ZAP cursor */
71         zap_cursor_t            *oiq_zc;
72         /** identifier for current quota record */
73         __u64                    oiq_id;
74         unsigned                 oiq_reset:1; /* 1 -- no need to advance */
75 };
76
77 /**
78  * Iterator's in-memory data structure for ZAPs
79  *
80  * ZFS does not store . and .. on a disk, instead they are
81  * generated up on request
82  * to follow this format we do the same
83  */
84 struct osd_zap_it {
85         zap_cursor_t            *ozi_zc;
86         struct osd_object       *ozi_obj;
87         struct lustre_capa      *ozi_capa;
88         unsigned                 ozi_reset:1;   /* 1 -- no need to advance */
89         /* ozi_pos - position of the cursor:
90          * 0 - before any record
91          * 1 - "."
92          * 2 - ".."
93          * 3 - real records */
94         unsigned                 ozi_pos:3;
95         union {
96                 char             ozi_name[NAME_MAX + 1]; /* file name for dir */
97                 __u64            ozi_key; /* binary key for index files */
98         };
99 };
100 #define DT_IT2DT(it) (&((struct osd_zap_it *)it)->ozi_obj->oo_dt)
101
102 /*
103  * regular ZFS direntry
104  */
105 struct zpl_direntry {
106         uint64_t        zde_dnode:48,
107                         zde_pad:12,
108                         zde_type:4;
109 } __attribute__((packed));
110
111 /*
112  * lustre direntry adds a fid to regular ZFS direntry
113  */
114 struct luz_direntry {
115         struct zpl_direntry     lzd_reg;
116         struct lu_fid           lzd_fid;
117 } __attribute__((packed));
118
119
120 /* cached SA attributes */
121 struct osa_attr {
122         uint64_t        mode;
123         uint64_t        gid;
124         uint64_t        uid;
125         uint64_t        nlink;
126         uint64_t        rdev;
127         uint64_t        flags;
128         uint64_t        size;
129         uint64_t        atime[2];
130         uint64_t        mtime[2];
131         uint64_t        ctime[2];
132 };
133
134 struct osd_thread_info {
135         const struct lu_env     *oti_env;
136
137         struct lu_fid            oti_fid;
138         /*
139          * XXX temporary: for ->i_op calls.
140          */
141         struct timespec          oti_time;
142         /*
143          * XXX temporary: for capa operations.
144          */
145         struct lustre_capa_key   oti_capa_key;
146         struct lustre_capa       oti_capa;
147
148         struct ost_id            oti_ostid;
149
150         char                     oti_buf[64];
151
152         /** osd iterator context used for iterator session */
153         union {
154                 struct osd_zap_it       oti_it_zap;
155                 struct osd_it_quota     oti_it_quota;
156         };
157
158         char                     oti_str[64];
159         char                     oti_key[MAXNAMELEN + 1];
160         struct lustre_mdt_attrs oti_mdt_attrs;
161
162         struct lu_attr           oti_la;
163         struct osa_attr          oti_osa;
164         zap_attribute_t          oti_za;
165         dmu_object_info_t        oti_doi;
166         struct luz_direntry      oti_zde;
167
168         struct lquota_id_info    oti_qi;
169         struct lu_seq_range      oti_seq_range;
170 };
171
172 extern struct lu_context_key osd_key;
173
174 static inline struct osd_thread_info *osd_oti_get(const struct lu_env *env)
175 {
176         return lu_context_key_get(&env->le_ctx, &osd_key);
177 }
178
179 struct osd_thandle {
180         struct thandle           ot_super;
181         cfs_list_t               ot_dcb_list;
182         cfs_list_t               ot_sa_list;
183         struct semaphore         ot_sa_lock;
184         dmu_tx_t                *ot_tx;
185         struct lquota_trans      ot_quota_trans;
186         __u32                    ot_write_commit:1,
187                                  ot_assigned:1;
188 };
189
190 #define OSD_OI_NAME_SIZE        16
191
192 /*
193  * Object Index (OI) instance.
194  */
195 struct osd_oi {
196         char                    oi_name[OSD_OI_NAME_SIZE]; /* unused */
197         uint64_t                oi_zapid;
198 };
199
200 struct osd_seq {
201         uint64_t         *os_compat_dirs;
202         int              os_subdir_count; /* subdir count for each seq */
203         obd_seq          os_seq;          /* seq number */
204         cfs_list_t       os_seq_list;     /* list to seq_list */
205 };
206
207 struct osd_seq_list {
208         rwlock_t         osl_seq_list_lock;     /* lock for seq_list */
209         cfs_list_t       osl_seq_list;      /* list head for seq */
210         struct semaphore osl_seq_init_sem;
211 };
212
213 #define OSD_OST_MAP_SIZE        32
214
215 /*
216  * osd device.
217  */
218 struct osd_device {
219         /* super-class */
220         struct dt_device         od_dt_dev;
221         /* information about underlying file system */
222         udmu_objset_t            od_objset;
223
224         /*
225          * Fid Capability
226          */
227         unsigned int             od_fl_capa:1;
228         unsigned long            od_capa_timeout;
229         __u32                    od_capa_alg;
230         struct lustre_capa_key  *od_capa_keys;
231         cfs_hlist_head_t        *od_capa_hash;
232
233         cfs_proc_dir_entry_t    *od_proc_entry;
234         struct lprocfs_stats    *od_stats;
235
236         uint64_t                 od_root;
237         struct osd_oi           **od_oi_table;
238         unsigned int             od_oi_count;
239         uint64_t                od_ost_compat_grp0;
240         struct osd_seq_list     od_seq_list;
241
242         unsigned int             od_rdonly:1,
243                                  od_xattr_in_sa:1,
244                                  od_quota_iused_est:1;
245         char                     od_mntdev[128];
246         char                     od_svname[128];
247
248         int                      od_connects;
249         struct lu_site           od_site;
250
251         /* object IDs of the inode accounting indexes */
252         uint64_t                 od_iusr_oid;
253         uint64_t                 od_igrp_oid;
254
255         /* quota slave instance */
256         struct qsd_instance     *od_quota_slave;
257
258         /* used to debug zerocopy logic: the fields track all
259          * allocated, loaned and referenced buffers in use.
260          * to be removed once the change is tested well. */
261         cfs_atomic_t             od_zerocopy_alloc;
262         cfs_atomic_t             od_zerocopy_loan;
263         cfs_atomic_t             od_zerocopy_pin;
264
265         arc_prune_t             *arc_prune_cb;
266 };
267
268 struct osd_object {
269         struct dt_object         oo_dt;
270         /*
271          * Inode for file system object represented by this osd_object. This
272          * inode is pinned for the whole duration of lu_object life.
273          *
274          * Not modified concurrently (either setup early during object
275          * creation, or assigned by osd_object_create() under write lock).
276          */
277         dmu_buf_t               *oo_db;
278         sa_handle_t             *oo_sa_hdl;
279         nvlist_t                *oo_sa_xattr;
280         cfs_list_t               oo_sa_linkage;
281
282         struct rw_semaphore      oo_sem;
283
284         /* cached attributes */
285         rwlock_t                 oo_attr_lock;
286         struct lu_attr           oo_attr;
287
288         /* protects extended attributes */
289         struct semaphore         oo_guard;
290         uint64_t                 oo_xattr;
291
292         /* record size for index file */
293         int                      oo_recsize;
294 };
295
296 int osd_statfs(const struct lu_env *, struct dt_device *, struct obd_statfs *);
297 extern const struct dt_index_operations osd_acct_index_ops;
298 uint64_t osd_quota_fid2dmu(const struct lu_fid *fid);
299 extern struct lu_device_operations  osd_lu_ops;
300 int osd_declare_quota(const struct lu_env *env, struct osd_device *osd,
301                       qid_t uid, qid_t gid, long long space,
302                       struct osd_thandle *oh, bool is_blk, int *flags,
303                       bool force);
304
305 /*
306  * Helpers.
307  */
308 static inline int lu_device_is_osd(const struct lu_device *d)
309 {
310         return ergo(d != NULL && d->ld_ops != NULL, d->ld_ops == &osd_lu_ops);
311 }
312
313 static inline struct osd_object *osd_obj(const struct lu_object *o)
314 {
315         LASSERT(lu_device_is_osd(o->lo_dev));
316         return container_of0(o, struct osd_object, oo_dt.do_lu);
317 }
318
319 static inline struct osd_device *osd_dt_dev(const struct dt_device *d)
320 {
321         LASSERT(lu_device_is_osd(&d->dd_lu_dev));
322         return container_of0(d, struct osd_device, od_dt_dev);
323 }
324
325 static inline struct osd_device *osd_dev(const struct lu_device *d)
326 {
327         LASSERT(lu_device_is_osd(d));
328         return osd_dt_dev(container_of0(d, struct dt_device, dd_lu_dev));
329 }
330
331 static inline struct osd_object *osd_dt_obj(const struct dt_object *d)
332 {
333         return osd_obj(&d->do_lu);
334 }
335
336 static inline struct osd_device *osd_obj2dev(const struct osd_object *o)
337 {
338         return osd_dev(o->oo_dt.do_lu.lo_dev);
339 }
340
341 static inline struct lu_device *osd2lu_dev(struct osd_device *osd)
342 {
343         return &osd->od_dt_dev.dd_lu_dev;
344 }
345
346 static inline struct objset * osd_dtobj2objset(struct dt_object *o)
347 {
348         return osd_dev(o->do_lu.lo_dev)->od_objset.os;
349 }
350
351 static inline int osd_invariant(const struct osd_object *obj)
352 {
353         return 1;
354 }
355
356 static inline int osd_object_invariant(const struct lu_object *l)
357 {
358         return osd_invariant(osd_obj(l));
359 }
360
361 static inline struct seq_server_site *osd_seq_site(struct osd_device *osd)
362 {
363         return osd->od_dt_dev.dd_lu_dev.ld_site->ld_seq_site;
364 }
365
366 static inline char *osd_name(struct osd_device *osd)
367 {
368         return osd->od_dt_dev.dd_lu_dev.ld_obd->obd_name;
369 }
370
371 #ifdef LPROCFS
372 enum {
373         LPROC_OSD_READ_BYTES = 0,
374         LPROC_OSD_WRITE_BYTES = 1,
375         LPROC_OSD_GET_PAGE = 2,
376         LPROC_OSD_NO_PAGE = 3,
377         LPROC_OSD_CACHE_ACCESS = 4,
378         LPROC_OSD_CACHE_HIT = 5,
379         LPROC_OSD_CACHE_MISS = 6,
380         LPROC_OSD_COPY_IO = 7,
381         LPROC_OSD_ZEROCOPY_IO = 8,
382         LPROC_OSD_TAIL_IO = 9,
383         LPROC_OSD_LAST,
384 };
385
386 /* osd_lproc.c */
387 extern struct lprocfs_vars lprocfs_osd_obd_vars[];
388 extern struct lprocfs_vars lprocfs_osd_module_vars[];
389
390 int osd_procfs_init(struct osd_device *osd, const char *name);
391 int osd_procfs_fini(struct osd_device *osd);
392
393 int udmu_zap_cursor_retrieve_key(const struct lu_env *env,
394                                  zap_cursor_t *zc, char *key, int max);
395 int udmu_zap_cursor_retrieve_value(const struct lu_env *env,
396                                    zap_cursor_t *zc,  char *buf,
397                                    int buf_size, int *bytes_read);
398
399 /* osd_object.c */
400 void osd_object_sa_dirty_rele(struct osd_thandle *oh);
401 int __osd_obj2dbuf(const struct lu_env *env, objset_t *os,
402                    uint64_t oid, dmu_buf_t **dbp, void *tag);
403 struct lu_object *osd_object_alloc(const struct lu_env *env,
404                                    const struct lu_object_header *hdr,
405                                    struct lu_device *d);
406 int osd_object_sa_update(struct osd_object *obj, sa_attr_type_t type,
407                          void *buf, uint32_t buflen, struct osd_thandle *oh);
408 int __osd_zap_create(const struct lu_env *env, udmu_objset_t *uos,
409                      dmu_buf_t **zap_dbp, dmu_tx_t *tx, struct lu_attr *la,
410                      uint64_t parent, void *tag, zap_flags_t flags);
411 int __osd_object_create(const struct lu_env *env, udmu_objset_t *uos,
412                         dmu_buf_t **dbp, dmu_tx_t *tx, struct lu_attr *la,
413                         uint64_t parent, void *tag);
414 int __osd_object_free(udmu_objset_t *uos, uint64_t oid, dmu_tx_t *tx);
415
416 /* osd_oi.c */
417 int osd_oi_init(const struct lu_env *env, struct osd_device *o);
418 void osd_oi_fini(const struct lu_env *env, struct osd_device *o);
419 int osd_fid_lookup(const struct lu_env *env,
420                    struct osd_device *, const struct lu_fid *, uint64_t *);
421 uint64_t osd_get_name_n_idx(const struct lu_env *env, struct osd_device *osd,
422                             const struct lu_fid *fid, char *buf);
423 int osd_options_init(void);
424
425 /* osd_index.c */
426 int osd_index_try(const struct lu_env *env, struct dt_object *dt,
427                   const struct dt_index_features *feat);
428
429
430 /* osd_xattr.c */
431 int osd_xattr_get(const struct lu_env *env, struct dt_object *dt,
432                   struct lu_buf *buf, const char *name,
433                   struct lustre_capa *capa);
434 int osd_declare_xattr_set(const struct lu_env *env, struct dt_object *dt,
435                           const struct lu_buf *buf, const char *name,
436                           int fl, struct thandle *handle);
437 int osd_xattr_set(const struct lu_env *env, struct dt_object *dt,
438                   const struct lu_buf *buf, const char *name, int fl,
439                   struct thandle *handle, struct lustre_capa *capa);
440 int osd_declare_xattr_del(const struct lu_env *env, struct dt_object *dt,
441                           const char *name, struct thandle *handle);
442 int osd_xattr_del(const struct lu_env *env, struct dt_object *dt,
443                   const char *name, struct thandle *handle,
444                   struct lustre_capa *capa);
445 int osd_xattr_list(const struct lu_env *env, struct dt_object *dt,
446                    struct lu_buf *lb, struct lustre_capa *capa);
447 void __osd_xattr_declare_set(const struct lu_env *env, struct osd_object *obj,
448                         int vallen, const char *name, struct osd_thandle *oh);
449 int __osd_sa_xattr_set(const struct lu_env *env, struct osd_object *obj,
450                        const struct lu_buf *buf, const char *name, int fl,
451                        struct osd_thandle *oh);;
452 int __osd_xattr_set(const struct lu_env *env, struct osd_object *obj,
453                     const struct lu_buf *buf, const char *name, int fl,
454                     struct osd_thandle *oh);
455 static inline int
456 osd_xattr_set_internal(const struct lu_env *env, struct osd_object *obj,
457                        const struct lu_buf *buf, const char *name, int fl,
458                        struct osd_thandle *oh, struct lustre_capa *capa)
459 {
460         int rc;
461
462         if (osd_obj2dev(obj)->od_xattr_in_sa) {
463                 rc = __osd_sa_xattr_set(env, obj, buf, name, fl, oh);
464                 if (rc == -EFBIG)
465                         rc = __osd_xattr_set(env, obj, buf, name, fl, oh);
466         } else {
467                 rc = __osd_xattr_set(env, obj, buf, name, fl, oh);
468         }
469
470         return rc;
471 }
472
473 #endif
474 #endif /* _OSD_INTERNAL_H */