Whamcloud - gitweb
Reworked to have a dirty inode list on superblock, dirty pages per inode.
[fs/lustre-release.git] / lustre / include / linux / obd_class.h
1 #ifndef __LINUX_CLASS_OBD_H
2 #define __LINUX_CLASS_OBD_H
3
4 #include <linux/fs.h>
5 #include <linux/ext2_fs.h>
6 #include <linux/time.h>
7 #include <linux/obd.h>
8
9 #include <linux/obd_ext2.h>
10 #include <linux/obd_snap.h>
11 /* #include <linux/obd_fc.h> */
12 #include <linux/obd_raid1.h>
13 #include <linux/obd_rpc.h>
14
15
16 /*
17  *  ======== OBD type Declarations ===========
18  */
19
20 typedef uint64_t        obd_id;
21 typedef uint64_t        obd_gr;
22 typedef uint64_t        obd_time;
23 typedef uint64_t        obd_size;
24 typedef uint64_t        obd_off;
25 typedef uint64_t        obd_blocks;
26 typedef uint32_t        obd_blksize;
27 typedef uint32_t        obd_mode;
28 typedef uint32_t        obd_uid;
29 typedef uint32_t        obd_gid;
30 typedef uint32_t        obd_flag;
31 typedef uint32_t        obd_count;
32
33 #define OBD_FL_INLINEDATA       (0x00000001UL)  
34 #define OBD_FL_OBDMDEXISTS      (0x00000002UL)
35
36 #define OBD_INLINESZ    60
37 #define OBD_OBDMDSZ     60
38 /* Note: 64-bit types are 64-bit aligned in structure */
39 struct obdo {
40         obd_id                  o_id;
41         obd_gr                  o_gr;
42         obd_time                o_atime;
43         obd_time                o_mtime;
44         obd_time                o_ctime;
45         obd_size                o_size;
46         obd_blocks              o_blocks;
47         obd_blksize             o_blksize;
48         obd_mode                o_mode;
49         obd_uid                 o_uid;
50         obd_gid                 o_gid;
51         obd_flag                o_flags;
52         obd_flag                o_obdflags;
53         obd_count               o_nlink;
54         obd_count               o_generation;
55         obd_flag                o_valid;        /* hot fields in this obdo */
56         char                    o_inline[OBD_INLINESZ];
57         char                    o_obdmd[OBD_OBDMDSZ];
58         struct list_head        o_list;
59         struct obd_ops          *o_op;
60 };
61
62 #define OBD_MD_FLALL    (~0UL)
63 #define OBD_MD_FLID     (0x00000001UL)
64 #define OBD_MD_FLATIME  (0x00000002UL)
65 #define OBD_MD_FLMTIME  (0x00000004UL)
66 #define OBD_MD_FLCTIME  (0x00000008UL)
67 #define OBD_MD_FLSIZE   (0x00000010UL)
68 #define OBD_MD_FLBLOCKS (0x00000020UL)
69 #define OBD_MD_FLBLKSZ  (0x00000040UL)
70 #define OBD_MD_FLMODE   (0x00000080UL)
71 #define OBD_MD_FLUID    (0x00000100UL)
72 #define OBD_MD_FLGID    (0x00000200UL)
73 #define OBD_MD_FLFLAGS  (0x00000400UL)
74 #define OBD_MD_FLOBDFLG (0x00000800UL)
75 #define OBD_MD_FLNLINK  (0x00001000UL)
76 #define OBD_MD_FLGENER  (0x00002000UL)
77 #define OBD_MD_FLINLINE (0x00004000UL)
78 #define OBD_MD_FLOBDMD  (0x00008000UL)
79 #define OBD_MD_FLNOTOBD (~(OBD_MD_FLOBDMD | OBD_MD_FLOBDFLG | OBD_MD_FLBLOCKS))
80
81 /*
82  *  ======== OBD Device Declarations ===========
83  */
84
85
86 #define OBD_PSDEV_MAJOR 186
87 #define MAX_OBD_DEVICES 8
88 #define MAX_MULTI       16
89
90
91 extern struct obd_device obd_dev[MAX_OBD_DEVICES];
92
93
94 #define OBD_ATTACHED 0x1
95 #define OBD_SET_UP   0x2
96
97 struct obd_conn {
98         struct obd_device *oc_dev;
99         uint32_t oc_id;
100 };
101
102 /* corresponds to one of the obdx */
103 struct obd_device {
104         struct obd_type *obd_type;
105         int obd_minor;
106         int obd_flags;
107         int obd_refcnt; 
108         int obd_multi_count;
109         struct obd_conn obd_multi_conn[MAX_MULTI];
110         unsigned int obd_gen_last_id;
111         unsigned long obd_gen_prealloc_quota;
112         struct list_head obd_gen_clients;
113         union {
114                 struct ext2_obd ext2;
115                 struct raid1_obd raid1;
116                 struct snap_obd snap;
117                 struct rpc_obd rpc;
118                 /* struct fc_obd fc; */
119         } u;
120 };
121
122 /*
123  *  ======== OBD Operations Declarations ===========
124  */
125
126 #define OBD_BRW_READ    (READ)
127 #define OBD_BRW_WRITE   (WRITE)
128 #define OBD_BRW_RWMASK  (READ | WRITE)
129 #define OBD_BRW_CREATE  (0x00000010UL)
130
131 struct obd_ops {
132         int (*o_iocontrol)(int cmd, struct obd_conn *, int len, void *karg,
133                            void *uarg);
134         int (*o_get_info)(struct obd_conn *, obd_count keylen, void *key,
135                           obd_count *vallen, void **val);
136         int (*o_set_info)(struct obd_conn *, obd_count keylen, void *key,
137                           obd_count vallen, void *val);
138         int (*o_attach)(struct obd_device *dev, obd_count len, void *data);
139         int (*o_detach)(struct obd_device *dev);
140         int (*o_setup) (struct obd_device *dev, obd_count len, void *data);
141         int (*o_cleanup)(struct obd_device *dev);
142         int (*o_connect)(struct obd_conn *conn);
143         int (*o_disconnect)(struct obd_conn *conn);
144         int (*o_statfs)(struct obd_conn *conn, struct statfs *statfs);
145         int (*o_preallocate)(struct obd_conn *, obd_count *req, obd_id *ids);
146         int (*o_create)(struct obd_conn *conn,  struct obdo *oa);
147         int (*o_destroy)(struct obd_conn *conn, struct obdo *oa);
148         int (*o_setattr)(struct obd_conn *conn, struct obdo *oa);
149         int (*o_getattr)(struct obd_conn *conn, struct obdo *oa);
150         int (*o_read)(struct obd_conn *conn, struct obdo *oa, char *buf,
151                       obd_size *count, obd_off offset);
152         int (*o_write)(struct obd_conn *conn, struct obdo *oa, char *buf,
153                        obd_size *count, obd_off offset);
154         int (*o_brw)(int rw, struct obd_conn *conn, obd_count num_oa,
155                      struct obdo **oa, obd_count *oa_bufs, char **buf,
156                      obd_size *count, obd_off *offset, obd_flag *flags);
157         int (*o_punch)(struct obd_conn *conn, struct obdo *tgt, obd_size count,
158                        obd_off offset);
159         int (*o_sync)(struct obd_conn *conn, struct obdo *tgt, obd_size count,
160                       obd_off offset);
161         int (*o_migrate)(struct obd_conn *conn, struct obdo *dst,
162                          struct obdo *src, obd_size count, obd_off offset);
163         int (*o_copy)(struct obd_conn *dstconn, struct obdo *dst,
164                       struct obd_conn *srconn, struct obdo *src,
165                       obd_size count, obd_off offset);
166         int (*o_iterate)(struct obd_conn *conn, int (*)(obd_id, obd_gr, void *),
167                          obd_id *startid, obd_gr group, void *data);
168 };
169
170 #define OBT(dev)        dev->obd_type->typ_ops
171 #define OBP(dev,op)     dev->obd_type->typ_ops->o_ ## op
172
173 /* This value is not arbitrarily chosen.  KIO_STATIC_PAGES from linux/iobuf.h */
174 #define MAX_IOVEC       (KIO_STATIC_PAGES - 1)
175
176
177 /*
178  *  ======== OBD Metadata Support  ===========
179  */
180
181 extern int obd_init_obdo_cache(void);
182 extern void obd_cleanup_obdo_cache(void);
183
184
185 static inline int obdo_has_inline(struct obdo *obdo)
186 {
187         return (obdo->o_valid & OBD_MD_FLINLINE &&
188                 obdo->o_obdflags & OBD_FL_INLINEDATA);
189 };
190
191 static inline int obdo_has_obdmd(struct obdo *obdo)
192 {
193         return (obdo->o_valid & OBD_MD_FLOBDMD &&
194                 obdo->o_obdflags & OBD_FL_OBDMDEXISTS);
195 };
196
197 /* support routines */
198 extern kmem_cache_t *obdo_cachep;
199
200 static __inline__ struct obdo *obdo_alloc(void)
201 {
202         struct obdo *oa = NULL;
203
204         oa = kmem_cache_alloc(obdo_cachep, SLAB_KERNEL);
205         memset(oa, 0, sizeof (*oa));
206
207         return oa;
208 }
209
210 static __inline__ void obdo_free(struct obdo *oa)
211 {
212         if ( !oa ) 
213                 return;
214         kmem_cache_free(obdo_cachep, oa);
215 }
216
217
218
219 static __inline__ struct obdo *obdo_fromid(struct obd_conn *conn, obd_id id,
220                                            obd_flag valid)
221 {
222         struct obdo *oa;
223         int err;
224
225         ENTRY;
226         oa = obdo_alloc();
227         if ( !oa ) {
228                 EXIT;
229                 return ERR_PTR(-ENOMEM);
230         }
231         memset(oa, 0, sizeof(*oa));
232         oa->o_id = id;
233         oa->o_valid = valid;
234         if ((err = OBP(conn->oc_dev, getattr)(conn, oa))) {
235                 obdo_free(oa);
236                 EXIT;
237                 return ERR_PTR(err);
238         }
239         EXIT;
240         return oa;
241 }
242
243 static inline void obdo_from_iattr(struct obdo *oa, struct iattr *attr)
244 {
245         unsigned int ia_valid = attr->ia_valid;
246
247         if (ia_valid & ATTR_ATIME) {
248                 oa->o_atime = attr->ia_atime;
249                 oa->o_valid |= OBD_MD_FLATIME;
250         }
251         if (ia_valid & ATTR_MTIME) {
252                 oa->o_mtime = attr->ia_mtime;
253                 oa->o_valid |= OBD_MD_FLMTIME;
254         }
255         if (ia_valid & ATTR_CTIME) {
256                 oa->o_ctime = attr->ia_ctime;
257                 oa->o_valid |= OBD_MD_FLCTIME;
258         }
259         if (ia_valid & ATTR_SIZE) {
260                 oa->o_size = attr->ia_size;
261                 oa->o_valid |= OBD_MD_FLSIZE;
262         }
263         if (ia_valid & ATTR_MODE) {
264                 oa->o_mode = attr->ia_mode;
265                 oa->o_valid |= OBD_MD_FLMODE;
266                 if (!in_group_p(oa->o_gid) && !capable(CAP_FSETID))
267                         oa->o_mode &= ~S_ISGID;
268         }
269         if (ia_valid & ATTR_UID)
270         {
271                 oa->o_uid = attr->ia_uid;
272                 oa->o_valid |= OBD_MD_FLUID;
273         }
274         if (ia_valid & ATTR_GID) {
275                 oa->o_gid = attr->ia_gid;
276                 oa->o_valid |= OBD_MD_FLGID;
277         }
278 }
279
280
281 static __inline__ void obdo_cpy_md(struct obdo *dst, struct obdo *src)
282 {
283         CDEBUG(D_INODE, "src obdo %Ld valid 0x%x, dst obdo %Ld\n",
284                src->o_id, src->o_valid, dst->o_id);
285         if ( src->o_valid & OBD_MD_FLATIME ) 
286                 dst->o_atime = src->o_atime;
287         if ( src->o_valid & OBD_MD_FLMTIME ) 
288                 dst->o_mtime = src->o_mtime;
289         if ( src->o_valid & OBD_MD_FLCTIME ) 
290                 dst->o_ctime = src->o_ctime;
291         if ( src->o_valid & OBD_MD_FLSIZE ) 
292                 dst->o_size = src->o_size;
293         if ( src->o_valid & OBD_MD_FLBLOCKS ) /* allocation of space */
294                 dst->o_blocks = src->o_blocks;
295         if ( src->o_valid & OBD_MD_FLBLKSZ )
296                 dst->o_blksize = src->o_blksize;
297         if ( src->o_valid & OBD_MD_FLMODE ) 
298                 dst->o_mode = src->o_mode;
299         if ( src->o_valid & OBD_MD_FLUID ) 
300                 dst->o_uid = src->o_uid;
301         if ( src->o_valid & OBD_MD_FLGID ) 
302                 dst->o_gid = src->o_gid;
303         if ( src->o_valid & OBD_MD_FLFLAGS ) 
304                 dst->o_flags = src->o_flags;
305         /*
306         if ( src->o_valid & OBD_MD_FLOBDFLG ) 
307                 dst->o_obdflags = src->o_obdflags;
308         */
309         if ( src->o_valid & OBD_MD_FLNLINK ) 
310                 dst->o_nlink = src->o_nlink;
311         if ( src->o_valid & OBD_MD_FLGENER ) 
312                 dst->o_generation = src->o_generation;
313         if ( src->o_valid & OBD_MD_FLINLINE &&
314              src->o_obdflags & OBD_FL_INLINEDATA) {
315                 memcpy(dst->o_inline, src->o_inline, sizeof(src->o_inline));
316                 dst->o_obdflags |= OBD_FL_INLINEDATA;
317         }
318         if ( src->o_valid & OBD_MD_FLOBDMD &&
319              src->o_obdflags & OBD_FL_OBDMDEXISTS) {
320                 memcpy(dst->o_obdmd, src->o_obdmd, sizeof(src->o_obdmd));
321                 dst->o_obdflags |= OBD_FL_OBDMDEXISTS;
322         }
323
324         dst->o_valid |= src->o_valid;
325 }
326
327 static __inline__ void obdo_from_inode(struct obdo *dst, struct inode *src)
328 {
329         CDEBUG(D_INODE, "src inode %ld, dst obdo %Ld valid 0x%08x\n",
330                src->i_ino, dst->o_id, dst->o_valid);
331         if ( dst->o_valid & OBD_MD_FLID )
332                 dst->o_id = src->i_ino;
333         if ( dst->o_valid & OBD_MD_FLATIME )
334                 dst->o_atime = src->i_atime;
335         if ( dst->o_valid & OBD_MD_FLMTIME )
336                 dst->o_mtime = src->i_mtime;
337         if ( dst->o_valid & OBD_MD_FLCTIME )
338                 dst->o_ctime = src->i_ctime;
339         if ( dst->o_valid & OBD_MD_FLSIZE )
340                 dst->o_size = src->i_size;
341         if ( dst->o_valid & OBD_MD_FLBLOCKS )   /* allocation of space */
342                 dst->o_blocks = src->i_blocks;
343         if ( dst->o_valid & OBD_MD_FLBLKSZ )
344                 dst->o_blksize = src->i_blksize;
345         if ( dst->o_valid & OBD_MD_FLMODE )
346                 dst->o_mode = src->i_mode;
347         if ( dst->o_valid & OBD_MD_FLUID )
348                 dst->o_uid = src->i_uid;
349         if ( dst->o_valid & OBD_MD_FLGID )
350                 dst->o_gid = src->i_gid;
351         if ( dst->o_valid & OBD_MD_FLFLAGS )
352                 dst->o_flags = src->i_flags;
353         if ( dst->o_valid & OBD_MD_FLNLINK )
354                 dst->o_nlink = src->i_nlink;
355         if ( dst->o_valid & OBD_MD_FLGENER ) 
356                 dst->o_generation = src->i_generation;
357 }
358
359 static __inline__ void obdo_to_inode(struct inode *dst, struct obdo *src)
360 {
361
362         CDEBUG(D_INODE, "src obdo %Ld valid 0x%08x, dst inode %ld\n",
363                src->o_id, src->o_valid, dst->i_ino);
364         if ( src->o_valid & OBD_MD_FLID )
365                 dst->i_ino = src->o_id;
366         if ( src->o_valid & OBD_MD_FLATIME ) 
367                 dst->i_atime = src->o_atime;
368         if ( src->o_valid & OBD_MD_FLMTIME ) 
369                 dst->i_mtime = src->o_mtime;
370         if ( src->o_valid & OBD_MD_FLCTIME ) 
371                 dst->i_ctime = src->o_ctime;
372         if ( src->o_valid & OBD_MD_FLSIZE ) 
373                 dst->i_size = src->o_size;
374         if ( src->o_valid & OBD_MD_FLBLOCKS ) /* allocation of space */
375                 dst->i_blocks = src->o_blocks;
376         if ( src->o_valid & OBD_MD_FLBLKSZ )
377                 dst->i_blksize = src->o_blksize;
378         if ( src->o_valid & OBD_MD_FLMODE ) 
379                 dst->i_mode = src->o_mode;
380         if ( src->o_valid & OBD_MD_FLUID ) 
381                 dst->i_uid = src->o_uid;
382         if ( src->o_valid & OBD_MD_FLGID ) 
383                 dst->i_gid = src->o_gid;
384         if ( src->o_valid & OBD_MD_FLFLAGS ) 
385                 dst->i_flags = src->o_flags;
386         if ( src->o_valid & OBD_MD_FLNLINK )
387                 dst->i_nlink = src->o_nlink;
388         if ( src->o_valid & OBD_MD_FLGENER )
389                 dst->i_generation = src->o_generation;
390 }
391
392 /* returns FALSE if comparison (by flags) is same, TRUE if changed */
393 static __inline__ int obdo_cmp_md(struct obdo *dst, struct obdo *src,
394                                   obd_flag compare)
395 {
396         int res = 0;
397
398         if ( compare & OBD_MD_FLATIME )
399                 res = (res || (dst->o_atime != src->o_atime));
400         if ( compare & OBD_MD_FLMTIME )
401                 res = (res || (dst->o_mtime != src->o_mtime));
402         if ( compare & OBD_MD_FLCTIME )
403                 res = (res || (dst->o_ctime != src->o_ctime));
404         if ( compare & OBD_MD_FLSIZE )
405                 res = (res || (dst->o_size != src->o_size));
406         if ( compare & OBD_MD_FLBLOCKS ) /* allocation of space */
407                 res = (res || (dst->o_blocks != src->o_blocks));
408         if ( compare & OBD_MD_FLBLKSZ )
409                 res = (res || (dst->o_blksize != src->o_blksize));
410         if ( compare & OBD_MD_FLMODE )
411                 res = (res || (dst->o_mode != src->o_mode));
412         if ( compare & OBD_MD_FLUID )
413                 res = (res || (dst->o_uid != src->o_uid));
414         if ( compare & OBD_MD_FLGID )
415                 res = (res || (dst->o_gid != src->o_gid));
416         if ( compare & OBD_MD_FLFLAGS ) 
417                 res = (res || (dst->o_flags != src->o_flags));
418         if ( compare & OBD_MD_FLNLINK )
419                 res = (res || (dst->o_nlink != src->o_nlink));
420         if ( compare & OBD_MD_FLGENER )
421                 res = (res || (dst->o_generation != src->o_generation));
422         /* XXX Don't know if thses should be included here - wasn't previously
423         if ( compare & OBD_MD_FLINLINE )
424                 res = (res || memcmp(dst->o_inline, src->o_inline));
425         if ( compare & OBD_MD_FLOBDMD )
426                 res = (res || memcmp(dst->o_obdmd, src->o_obdmd));
427         */
428         return res;
429 }
430
431
432
433 int obd_register_type(struct obd_ops *ops, char *nm);
434 int obd_unregister_type(char *nm);
435
436 struct obd_client {
437         struct list_head cli_chain;
438         struct obd_device *cli_obd;
439         unsigned int cli_id;
440         unsigned long cli_prealloc_quota;
441         struct list_head cli_prealloc_inodes;
442 };
443
444
445 struct obd_prealloc_inode {
446         struct list_head obd_prealloc_chain;
447         unsigned long inode;
448 };
449
450 /* generic operations shared by various OBD types */
451 int gen_multi_setup(struct obd_device *obddev, uint32_t len, void *data);
452 int gen_multi_cleanup(struct obd_device *obddev);
453 int gen_multi_attach(struct obd_device *obddev, uint32_t len, void *data);
454 int gen_multi_detach(struct obd_device *obddev);
455 int gen_connect (struct obd_conn *conn);
456 int gen_disconnect(struct obd_conn *conn);
457 struct obd_client *gen_client(struct obd_conn *);
458 int gen_cleanup(struct obd_device *obddev);
459 int gen_copy_data(struct obd_conn *dst_conn, struct obdo *dst,
460                   struct obd_conn *src_conn, struct obdo *src,
461                   obd_size count, obd_off offset);
462
463
464
465 /*
466  *  ======== OBD IOCL Declarations ===========
467  */
468 struct oic_generic {
469         uint32_t att_connid;
470         int      att_typelen;
471         void    *att_type;
472         int      att_datalen;
473         void    *att_data;
474 };
475
476
477 /* for preallocation */
478 struct oic_prealloc_s {
479         uint32_t         conn_id;
480         uint32_t         alloc; /* user sets it to the number of inodes
481                                  * requesting to be preallocated.  kernel
482                                  * sets it to the actual number of
483                                  * succesfully preallocated inodes */
484         obd_id           ids[32]; /* actual inode numbers */
485 };
486
487 /* for getattr, setattr, create, destroy */
488 struct oic_attr_s {
489         uint32_t         conn_id;
490         struct obdo      obdo;
491 };
492
493 /* for copy, migrate */
494 struct ioc_mv_s {
495         uint32_t         src_conn_id;
496         struct obdo      src;
497         uint32_t         dst_conn_id;
498         struct obdo      dst;
499 };
500
501 /* for read/write */
502 struct oic_rw_s {
503         uint32_t         conn_id;
504         struct obdo      obdo;
505         char            *buf;
506         obd_size         count;
507         obd_off          offset;
508 };
509
510 /* for punch, sync */
511 struct oic_range_s {
512         uint32_t         conn_id;
513         struct obdo      obdo;
514         obd_size         count;
515         obd_off          offset;
516 };
517
518
519 #define OBD_IOC_CREATE                 _IOR ('f',  3, long)
520 #define OBD_IOC_SETUP                  _IOW ('f',  4, long)
521 #define OBD_IOC_CLEANUP                _IO  ('f',  5      )
522 #define OBD_IOC_DESTROY                _IOW ('f',  6, long)
523 #define OBD_IOC_PREALLOCATE            _IOWR('f',  7, long)
524 #define OBD_IOC_DEC_USE_COUNT          _IO  ('f',  8      )
525 #define OBD_IOC_SETATTR                _IOW ('f',  9, long)
526 #define OBD_IOC_GETATTR                _IOR ('f', 10, long)
527 #define OBD_IOC_READ                   _IOWR('f', 11, long)
528 #define OBD_IOC_WRITE                  _IOWR('f', 12, long)
529 #define OBD_IOC_CONNECT                _IOR ('f', 13, long)
530 #define OBD_IOC_DISCONNECT             _IOW ('f', 14, long)
531 #define OBD_IOC_STATFS                 _IOWR('f', 15, long)
532 #define OBD_IOC_SYNC                   _IOR ('f',  16, long)
533 #define OBD_IOC_READ2                  _IOWR('f', 17, long)
534 #define OBD_IOC_FORMAT                 _IOWR('f', 18, long)
535 #define OBD_IOC_PARTITION              _IOWR('f', 19, long)
536 #define OBD_IOC_ATTACH                 _IOWR('f', 20, long)
537 #define OBD_IOC_DETACH                 _IOWR('f', 21, long)
538 #define OBD_IOC_COPY                   _IOWR('f', 22, long)
539 #define OBD_IOC_MIGR                   _IOWR('f', 23, long)
540
541 #define OBD_IOC_DEC_FS_USE_COUNT       _IO  ('f', 32      )
542
543
544 /* sysctl.c */
545 extern void obd_sysctl_init (void);
546 extern void obd_sysctl_clean (void);
547
548 #define CHKCONN(conn)   do { if (!gen_client(conn)) {\
549                 printk("%s %d invalid client %u\n", __FILE__, __LINE__, \
550                        conn->oc_id);\
551                 return -EINVAL; }} while (0) 
552
553
554
555 #endif /* __LINUX_CLASS_OBD_H */