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