Whamcloud - gitweb
- added connection structure which encompasses some (but perhaps not enough yet)
[fs/lustre-release.git] / lustre / llite / super.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Lustre Light Super operations
5  *
6  * This code is issued under the GNU General Public License.
7  * See the file COPYING in this distribution
8  *
9  * Copryright (C) 1996 Peter J. Braam <braam@stelias.com>
10  * Copryright (C) 1999 Stelias Computing Inc. <braam@stelias.com>
11  * Copryright (C) 1999 Seagate Technology Inc.
12  * Copryright (C) 2001 Mountain View Data, Inc.
13  * Copryright (C) 2002 Cluster File Systems, Inc.
14  *
15  */
16
17 #include <linux/config.h>
18 #include <linux/module.h>
19 #include <linux/kernel.h>
20 #include <linux/mm.h>
21 #include <linux/string.h>
22 #include <linux/stat.h>
23 #include <linux/errno.h>
24 #include <linux/locks.h>
25 #include <linux/unistd.h>
26
27 #include <asm/system.h>
28 #include <asm/uaccess.h>
29
30 #include <linux/fs.h>
31 #include <linux/stat.h>
32 #include <asm/uaccess.h>
33 #include <asm/segment.h>
34
35 #define DEBUG_SUBSYSTEM S_LLITE
36
37 #include <linux/lustre_lite.h>
38
39 kmem_cache_t *ll_file_data_slab;
40 extern struct address_space_operations ll_aops;
41 extern struct address_space_operations ll_dir_aops;
42 struct super_operations ll_super_operations;
43
44 static struct lustre_ha_mgr *llite_ha_mgr;
45
46 static char *ll_read_opt(const char *opt, char *data)
47 {
48         char *value;
49         char *retval;
50         ENTRY;
51
52         CDEBUG(D_INFO, "option: %s, data %s\n", opt, data);
53         if ( strncmp(opt, data, strlen(opt)) ) {
54                 EXIT;
55                 return NULL;
56         }
57         if ( (value = strchr(data, '=')) == NULL ) {
58                 EXIT;
59                 return NULL;
60         }
61
62         value++;
63         OBD_ALLOC(retval, strlen(value) + 1);
64         if ( !retval ) {
65                 CERROR("out of memory!\n");
66                 return NULL;
67         }
68         
69         memcpy(retval, value, strlen(value)+1);
70         CDEBUG(D_SUPER, "Assigned option: %s, value %s\n", opt, retval);
71         EXIT;
72         return retval;
73 }
74
75 static void ll_options(char *options, char **dev, char **vers)
76 {
77         char *this_char;
78         ENTRY;
79
80         if (!options) {
81                 EXIT;
82                 return;
83         }
84
85         for (this_char = strtok (options, ",");
86              this_char != NULL;
87              this_char = strtok (NULL, ",")) {
88                 CDEBUG(D_INFO, "this_char %s\n", this_char);
89                 if ( (!*dev && (*dev = ll_read_opt("device", this_char)))||
90                      (!*vers && (*vers = ll_read_opt("version", this_char))) )
91                         continue;
92         }
93         EXIT;
94 }
95
96 static struct super_block * ll_read_super(struct super_block *sb,
97                                           void *data, int silent)
98 {
99         struct inode *root = 0;
100         struct ll_sb_info *sbi;
101         char *device = NULL;
102         char *version = NULL;
103         int devno;
104         int err;
105         struct ptlrpc_request *request = NULL;
106
107         ENTRY;
108         MOD_INC_USE_COUNT;
109
110         OBD_ALLOC(sbi, sizeof(*sbi));
111         if (!sbi) {
112                 MOD_DEC_USE_COUNT;
113                 RETURN(NULL);
114         }
115
116         sb->u.generic_sbp = sbi;
117
118         ll_options(data, &device, &version);
119
120         if ( !device ) {
121                 CERROR("no device\n");
122                 GOTO(out_free, sb = NULL);
123         }
124
125         devno = simple_strtoul(device, NULL, 0);
126         if ( devno >= MAX_OBD_DEVICES ) {
127                 CERROR("device of %s too high\n", device);
128                 GOTO(out_free, sb = NULL);
129         }
130
131         sbi->ll_conn.oc_dev = &obd_dev[devno];
132         err = obd_connect(&sbi->ll_conn);
133         if ( err ) {
134                 CERROR("cannot connect to %s\n", device);
135                 GOTO(out_free, sb = NULL);
136         }
137
138         /* the first parameter should become an mds device no */
139         ptlrpc_init_client(llite_ha_mgr, MDS_REQUEST_PORTAL, MDC_REPLY_PORTAL,
140                            &sbi->ll_mds_client);
141         sbi->ll_mds_conn = ptlrpc_connect_client("mds");
142         if (err) {
143                 CERROR("cannot find MDS\n");
144                 GOTO(out_disc, sb = NULL);
145         }
146
147         sbi->ll_super = sb;
148         sbi->ll_rootino = 2;
149         sbi->ll_ha_mgr = llite_ha_mgr;
150
151         sb->s_maxbytes = 1LL << 36;
152         sb->s_blocksize = PAGE_SIZE;
153         sb->s_blocksize_bits = (unsigned char)PAGE_SHIFT;
154         sb->s_magic = LL_SUPER_MAGIC;
155         sb->s_op = &ll_super_operations;
156
157         /* make root inode */
158         err = mdc_getattr(&sbi->ll_mds_client, sbi->ll_mds_conn,
159                           sbi->ll_rootino, S_IFDIR,
160                           OBD_MD_FLNOTOBD|OBD_MD_FLBLOCKS, &request);
161         if (err) {
162                 CERROR("mdc_getattr failed for root %d\n", err);
163                 GOTO(out_req, sb = NULL);
164         }
165
166         root = iget4(sb, sbi->ll_rootino, NULL,
167                      lustre_msg_buf(request->rq_repmsg, 0));
168         if (root) {
169                 sb->s_root = d_alloc_root(root);
170         } else {
171                 CERROR("lustre_lite: bad iget4 for root\n");
172                 GOTO(out_req, sb = NULL);
173         }
174
175 out_req:
176         ptlrpc_free_req(request);
177         if (!sb) {
178 out_disc:
179                 obd_disconnect(&sbi->ll_conn);
180 out_free:
181                 MOD_DEC_USE_COUNT;
182                 OBD_FREE(sbi, sizeof(*sbi));
183         }
184         if (device) 
185                 OBD_FREE(device, strlen(device) + 1);
186         if (version)
187                 OBD_FREE(version, strlen(version) + 1);
188
189         RETURN(sb);
190 } /* ll_read_super */
191
192 static void ll_put_super(struct super_block *sb)
193 {
194         struct ll_sb_info *sbi = sb->u.generic_sbp;
195         ENTRY;
196         obd_disconnect(&sbi->ll_conn);
197         ptlrpc_put_connection(sbi->ll_mds_conn);
198         OBD_FREE(sb->u.generic_sbp, sizeof(*sbi));
199         MOD_DEC_USE_COUNT;
200         EXIT;
201 } /* ll_put_super */
202
203
204 extern inline struct obdo * ll_oa_from_inode(struct inode *inode, int valid);
205 static void ll_delete_inode(struct inode *inode)
206 {
207         if (S_ISREG(inode->i_mode)) { 
208                 int err; 
209                 struct obdo *oa; 
210                 oa = ll_oa_from_inode(inode, OBD_MD_FLNOTOBD);
211                 if (!oa) { 
212                         CERROR("no memory\n"); 
213                 }
214
215                 err = obd_destroy(ll_i2obdconn(inode), oa); 
216                 CDEBUG(D_INODE, "obd destroy of %Ld error %d\n",
217                        oa->o_id, err);
218                 obdo_free(oa);
219         }
220
221         clear_inode(inode); 
222 }
223
224 /* like inode_setattr, but doesn't mark the inode dirty */ 
225 static int ll_attr2inode(struct inode * inode, struct iattr * attr, int trunc)
226 {
227         unsigned int ia_valid = attr->ia_valid;
228         int error = 0;
229
230         if ((ia_valid & ATTR_SIZE) && trunc ) {
231                 error = vmtruncate(inode, attr->ia_size);
232                 if (error)
233                         goto out;
234         } else if (ia_valid & ATTR_SIZE) { 
235                 inode->i_size = attr->ia_size;
236         }               
237
238         if (ia_valid & ATTR_UID)
239                 inode->i_uid = attr->ia_uid;
240         if (ia_valid & ATTR_GID)
241                 inode->i_gid = attr->ia_gid;
242         if (ia_valid & ATTR_ATIME)
243                 inode->i_atime = attr->ia_atime;
244         if (ia_valid & ATTR_MTIME)
245                 inode->i_mtime = attr->ia_mtime;
246         if (ia_valid & ATTR_CTIME)
247                 inode->i_ctime = attr->ia_ctime;
248         if (ia_valid & ATTR_MODE) {
249                 inode->i_mode = attr->ia_mode;
250                 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
251                         inode->i_mode &= ~S_ISGID;
252         }
253 out:
254         return error;
255 }
256
257 int ll_inode_setattr(struct inode *inode, struct iattr *attr, int do_trunc)
258 {
259         struct ptlrpc_request *request = NULL;
260         struct ll_sb_info *sbi = ll_i2sbi(inode);
261         int err;
262
263         ENTRY;
264
265         /* change incore inode */
266         ll_attr2inode(inode, attr, do_trunc);
267
268         err = mdc_setattr(&sbi->ll_mds_client, sbi->ll_mds_conn, inode, attr,
269                           &request);
270         if (err)
271                 CERROR("mdc_setattr fails (%d)\n", err);
272
273         ptlrpc_free_req(request);
274
275         EXIT;
276         return err;
277 }
278
279 int ll_setattr(struct dentry *de, struct iattr *attr)
280 {
281         return ll_inode_setattr(de->d_inode, attr, 1);
282 }
283
284 static int ll_statfs(struct super_block *sb, struct statfs *buf)
285 {
286         struct statfs tmp;
287         int err;
288
289         ENTRY;
290
291         err = obd_statfs(ID(sb), &tmp);
292         if ( err ) { 
293                 CERROR("obd_statfs fails (%d)\n", err);
294                 return err;
295         }
296         memcpy(buf, &tmp, sizeof(*buf));
297         CDEBUG(D_SUPER, "statfs returns avail %ld\n", tmp.f_bavail);
298         EXIT;
299
300         return err; 
301 }
302
303 static void inline ll_to_inode(struct inode *dst, struct mds_body *body)
304 {
305         struct ll_inode_info *ii = 
306                 (struct ll_inode_info *) &dst->u.generic_ip;
307
308         /* core attributes first */
309         if ( body->valid & OBD_MD_FLID )
310                 dst->i_ino = body->ino;
311         if ( body->valid & OBD_MD_FLATIME ) 
312                 dst->i_atime = body->atime;
313         if ( body->valid & OBD_MD_FLMTIME ) 
314                 dst->i_mtime = body->mtime;
315         if ( body->valid & OBD_MD_FLCTIME ) 
316                 dst->i_ctime = body->ctime;
317         if ( body->valid & OBD_MD_FLSIZE ) 
318                 dst->i_size = body->size;
319         if ( body->valid & OBD_MD_FLMODE ) 
320                 dst->i_mode = body->mode;
321         if ( body->valid & OBD_MD_FLUID ) 
322                 dst->i_uid = body->uid;
323         if ( body->valid & OBD_MD_FLGID ) 
324                 dst->i_gid = body->gid;
325         if ( body->valid & OBD_MD_FLFLAGS ) 
326                 dst->i_flags = body->flags;
327         if ( body->valid & OBD_MD_FLNLINK )
328                 dst->i_nlink = body->nlink;
329         if ( body->valid & OBD_MD_FLGENER )
330                 dst->i_generation = body->generation;
331
332         /* this will become more elaborate for striping etc */ 
333         if (body->valid & OBD_MD_FLOBJID) 
334                 ii->lli_objid = body->objid;
335 #if 0
336
337         if (obdo_has_inline(oa)) {
338                 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
339                     S_ISFIFO(inode->i_mode)) {
340                         obd_rdev rdev = *((obd_rdev *)oa->o_inline);
341                         CDEBUG(D_INODE,
342                                "copying device %x from obdo to inode\n", rdev);
343                         init_special_inode(inode, inode->i_mode, rdev);
344                 } else {
345                         CDEBUG(D_INFO, "copying inline from obdo to inode\n");
346                         memcpy(oinfo->lli_inline, oa->o_inline, OBD_INLINESZ);
347                 }
348                 oinfo->lli_flags |= OBD_FL_INLINEDATA;
349         }
350 #endif 
351 } /* ll_to_inode */
352
353 static inline void ll_read_inode2(struct inode *inode, void *opaque)
354 {
355         struct mds_body *body = opaque; 
356         
357         ENTRY;
358         ll_to_inode(inode, body); 
359
360         /* OIDEBUG(inode); */
361
362         if (S_ISREG(inode->i_mode)) {
363                 inode->i_op = &ll_file_inode_operations;
364                 inode->i_fop = &ll_file_operations;
365                 inode->i_mapping->a_ops = &ll_aops;
366                 EXIT;
367         } else if (S_ISDIR(inode->i_mode)) {
368                 inode->i_op = &ll_dir_inode_operations;
369                 inode->i_fop = &ll_dir_operations; 
370                 inode->i_mapping->a_ops = &ll_dir_aops;
371                 EXIT;
372         } else if (S_ISLNK(inode->i_mode)) {
373                 inode->i_op = &ll_fast_symlink_inode_operations;
374                 EXIT;
375         } else {
376                 init_special_inode(inode, inode->i_mode,
377                                    ((int *)ll_i2info(inode)->lli_inline)[0]);
378         }
379
380         EXIT;
381         return;
382 }
383
384 /* exported operations */
385 struct super_operations ll_super_operations =
386 {
387         read_inode2: ll_read_inode2,
388         delete_inode: ll_delete_inode,
389         put_super: ll_put_super,
390         // statfs: ll_statfs
391 };
392
393 struct file_system_type lustre_lite_fs_type = {
394         "lustre_lite", 0, ll_read_super, NULL
395 };
396
397 static int llite_setup(struct obd_device *dev, obd_count len, void *buf)
398 {
399         MOD_INC_USE_COUNT;
400         return 0;
401 }
402
403 static int llite_cleanup(struct obd_device *dev)
404 {
405         MOD_DEC_USE_COUNT;
406         return 0;
407 }
408
409 /* use obd ops to offer management infrastructure */
410 static struct obd_ops llite_obd_ops = {
411         o_setup:       llite_setup,
412         o_cleanup:     llite_cleanup,
413 };
414
415 static int __init init_lustre_lite(void)
416 {
417         printk(KERN_INFO "Lustre Lite 0.0.1, braam@clusterfs.com\n");
418         obd_register_type(&llite_obd_ops, LUSTRE_LITE_NAME);
419         ll_file_data_slab = kmem_cache_create("ll_file_data",
420                                               sizeof(struct ll_file_data), 0,
421                                                SLAB_HWCACHE_ALIGN, NULL, NULL);
422         if (ll_file_data_slab == NULL)
423                 return -ENOMEM;
424
425         llite_ha_mgr = llite_ha_setup();
426         return register_filesystem(&lustre_lite_fs_type);
427 }
428
429 static void __exit exit_lustre_lite(void)
430 {
431         unregister_filesystem(&lustre_lite_fs_type);
432         llite_ha_cleanup(llite_ha_mgr);
433         kmem_cache_destroy(ll_file_data_slab);
434         obd_unregister_type(LUSTRE_LITE_NAME);
435 }
436
437 MODULE_AUTHOR("Peter J. Braam <braam@clusterfs.com>");
438 MODULE_DESCRIPTION("Lustre Lite Client File System v1.0");
439 MODULE_LICENSE("GPL");
440
441 module_init(init_lustre_lite);
442 module_exit(exit_lustre_lite);