Whamcloud - gitweb
Removes all traces of mds_req, mds_rep, ost_req, and ost_rep. All subsystems
[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_LLIGHT
36
37 #include <linux/lustre_light.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         err = ptlrpc_connect_client(-1, "mds",
138                                     MDS_REQUEST_PORTAL, MDC_REPLY_PORTAL,
139                                     &sbi->ll_mds_client);
140
141         if (err) {
142                 CERROR("cannot find MDS\n");
143                 GOTO(out_disc, sb = NULL);
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_light: 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         OBD_FREE(device, strlen(device) + 1);
181         OBD_FREE(version, strlen(version) + 1);
182
183         RETURN(sb);
184 } /* ll_read_super */
185
186 static void ll_put_super(struct super_block *sb)
187 {
188         struct ll_sb_info *sbi = sb->u.generic_sbp;
189         ENTRY;
190         obd_disconnect(&sbi->ll_conn);
191         OBD_FREE(sb->u.generic_sbp, sizeof(*sbi));
192         MOD_DEC_USE_COUNT;
193         EXIT;
194 } /* ll_put_super */
195
196
197 extern inline struct obdo * ll_oa_from_inode(struct inode *inode, int valid);
198 static void ll_delete_inode(struct inode *inode)
199 {
200         if (S_ISREG(inode->i_mode)) { 
201                 int err; 
202                 struct obdo *oa; 
203                 oa = ll_oa_from_inode(inode, OBD_MD_FLNOTOBD);
204                 if (!oa) { 
205                         CERROR("no memory\n"); 
206                 }
207
208                 err = obd_destroy(ll_i2obdconn(inode), oa); 
209                 CDEBUG(D_INODE, "obd destroy of %Ld error %d\n",
210                        oa->o_id, err);
211                 obdo_free(oa);
212         }
213
214         clear_inode(inode); 
215 }
216
217 /* like inode_setattr, but doesn't mark the inode dirty */ 
218 static int ll_attr2inode(struct inode * inode, struct iattr * attr, int trunc)
219 {
220         unsigned int ia_valid = attr->ia_valid;
221         int error = 0;
222
223         if ((ia_valid & ATTR_SIZE) && trunc ) {
224                 error = vmtruncate(inode, attr->ia_size);
225                 if (error)
226                         goto out;
227         } else if (ia_valid & ATTR_SIZE) { 
228                 inode->i_size = attr->ia_size;
229         }               
230
231         if (ia_valid & ATTR_UID)
232                 inode->i_uid = attr->ia_uid;
233         if (ia_valid & ATTR_GID)
234                 inode->i_gid = attr->ia_gid;
235         if (ia_valid & ATTR_ATIME)
236                 inode->i_atime = attr->ia_atime;
237         if (ia_valid & ATTR_MTIME)
238                 inode->i_mtime = attr->ia_mtime;
239         if (ia_valid & ATTR_CTIME)
240                 inode->i_ctime = attr->ia_ctime;
241         if (ia_valid & ATTR_MODE) {
242                 inode->i_mode = attr->ia_mode;
243                 if (!in_group_p(inode->i_gid) && !capable(CAP_FSETID))
244                         inode->i_mode &= ~S_ISGID;
245         }
246 out:
247         return error;
248 }
249
250 int ll_inode_setattr(struct inode *inode, struct iattr *attr, int do_trunc)
251 {
252         struct ptlrpc_request *request;
253         struct ll_sb_info *sbi = ll_i2sbi(inode);
254         int err;
255
256         ENTRY;
257
258         /* change incore inode */
259         ll_attr2inode(inode, attr, do_trunc);
260
261         err = mdc_setattr(&sbi->ll_mds_client, inode, attr, &request);
262         if (err)
263                 CERROR("mdc_setattr fails (%d)\n", err);
264
265         ptlrpc_free_req(request);
266
267         EXIT;
268         return err;
269 }
270
271 int ll_setattr(struct dentry *de, struct iattr *attr)
272 {
273         return ll_inode_setattr(de->d_inode, attr, 1);
274 }
275
276 static int ll_statfs(struct super_block *sb, struct statfs *buf)
277 {
278         struct statfs tmp;
279         int err;
280
281         ENTRY;
282
283         err = obd_statfs(ID(sb), &tmp);
284         if ( err ) { 
285                 CERROR("obd_statfs fails (%d)\n", err);
286                 return err;
287         }
288         memcpy(buf, &tmp, sizeof(*buf));
289         CDEBUG(D_SUPER, "statfs returns avail %ld\n", tmp.f_bavail);
290         EXIT;
291
292         return err; 
293 }
294
295 static void inline ll_to_inode(struct inode *dst, struct mds_body *body)
296 {
297         struct ll_inode_info *ii = 
298                 (struct ll_inode_info *) &dst->u.generic_ip;
299
300         /* core attributes first */
301         if ( body->valid & OBD_MD_FLID )
302                 dst->i_ino = body->ino;
303         if ( body->valid & OBD_MD_FLATIME ) 
304                 dst->i_atime = body->atime;
305         if ( body->valid & OBD_MD_FLMTIME ) 
306                 dst->i_mtime = body->mtime;
307         if ( body->valid & OBD_MD_FLCTIME ) 
308                 dst->i_ctime = body->ctime;
309         if ( body->valid & OBD_MD_FLSIZE ) 
310                 dst->i_size = body->size;
311         if ( body->valid & OBD_MD_FLMODE ) 
312                 dst->i_mode = body->mode;
313         if ( body->valid & OBD_MD_FLUID ) 
314                 dst->i_uid = body->uid;
315         if ( body->valid & OBD_MD_FLGID ) 
316                 dst->i_gid = body->gid;
317         if ( body->valid & OBD_MD_FLFLAGS ) 
318                 dst->i_flags = body->flags;
319         if ( body->valid & OBD_MD_FLNLINK )
320                 dst->i_nlink = body->nlink;
321         if ( body->valid & OBD_MD_FLGENER )
322                 dst->i_generation = body->generation;
323
324         /* this will become more elaborate for striping etc */ 
325         if (body->valid & OBD_MD_FLOBJID) 
326                 ii->lli_objid = body->objid;
327 #if 0
328
329         if (obdo_has_inline(oa)) {
330                 if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
331                     S_ISFIFO(inode->i_mode)) {
332                         obd_rdev rdev = *((obd_rdev *)oa->o_inline);
333                         CDEBUG(D_INODE,
334                                "copying device %x from obdo to inode\n", rdev);
335                         init_special_inode(inode, inode->i_mode, rdev);
336                 } else {
337                         CDEBUG(D_INFO, "copying inline from obdo to inode\n");
338                         memcpy(oinfo->lli_inline, oa->o_inline, OBD_INLINESZ);
339                 }
340                 oinfo->lli_flags |= OBD_FL_INLINEDATA;
341         }
342 #endif 
343 } /* ll_to_inode */
344
345 static inline void ll_read_inode2(struct inode *inode, void *opaque)
346 {
347         struct mds_body *body = opaque; 
348         
349         ENTRY;
350         ll_to_inode(inode, body); 
351
352         /* OIDEBUG(inode); */
353
354         if (S_ISREG(inode->i_mode)) {
355                 inode->i_op = &ll_file_inode_operations;
356                 inode->i_fop = &ll_file_operations;
357                 inode->i_mapping->a_ops = &ll_aops;
358                 EXIT;
359         } else if (S_ISDIR(inode->i_mode)) {
360                 inode->i_op = &ll_dir_inode_operations;
361                 inode->i_fop = &ll_dir_operations; 
362                 inode->i_mapping->a_ops = &ll_dir_aops;
363                 EXIT;
364         } else if (S_ISLNK(inode->i_mode)) {
365                 inode->i_op = &ll_fast_symlink_inode_operations;
366                 EXIT;
367         } else {
368                 init_special_inode(inode, inode->i_mode,
369                                    ((int *)ll_i2info(inode)->lli_inline)[0]);
370         }
371
372         EXIT;
373         return;
374 }
375
376 /* exported operations */
377 struct super_operations ll_super_operations =
378 {
379         read_inode2: ll_read_inode2,
380         delete_inode: ll_delete_inode,
381         put_super: ll_put_super,
382         // statfs: ll_statfs
383 };
384
385 struct file_system_type lustre_light_fs_type = {
386         "lustre_light", 0, ll_read_super, NULL
387 };
388
389 static int __init init_lustre_light(void)
390 {
391         printk(KERN_INFO "Lustre Light 0.0.1, braam@clusterfs.com\n");
392         ll_file_data_slab = kmem_cache_create("ll_file_data",
393                                               sizeof(struct ll_file_data), 0,
394                                                SLAB_HWCACHE_ALIGN, NULL, NULL);
395         if (ll_file_data_slab == NULL)
396                 return -ENOMEM;
397
398         return register_filesystem(&lustre_light_fs_type);
399 }
400
401 static void __exit exit_lustre_light(void)
402 {
403         unregister_filesystem(&lustre_light_fs_type);
404         kmem_cache_destroy(ll_file_data_slab);
405 }
406
407 MODULE_AUTHOR("Peter J. Braam <braam@clusterfs.com>");
408 MODULE_DESCRIPTION("Lustre Light Client File System v1.0");
409 MODULE_LICENSE("GPL");
410
411 module_init(init_lustre_light);
412 module_exit(exit_lustre_light);