Whamcloud - gitweb
Land b_orphan on HEAD (20040130_1601)
[fs/lustre-release.git] / lustre / ptlrpc / llog_server.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2001-2003 Cluster File Systems, Inc.
5  *   Author: Andreas Dilger <adilger@clusterfs.com>
6  *
7  *   This file is part of Lustre, http://www.lustre.org.
8  *
9  *   Lustre is free software; you can redistribute it and/or
10  *   modify it under the terms of version 2 of the GNU General Public
11  *   License as published by the Free Software Foundation.
12  *
13  *   Lustre is distributed in the hope that it will be useful,
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *   GNU General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with Lustre; if not, write to the Free Software
20  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  *  remote api for llog - server side
23  *
24  */
25
26 #define DEBUG_SUBSYSTEM S_LOG
27
28 #ifndef EXPORT_SYMTAB
29 #define EXPORT_SYMTAB
30 #endif
31
32 #include <linux/fs.h>
33 #include <linux/obd_class.h>
34 #include <linux/lustre_log.h>
35 #include <linux/lustre_net.h>
36 #include <portals/list.h>
37 #include <linux/lustre_fsfilt.h>
38
39 int llog_origin_handle_create(struct ptlrpc_request *req)
40 {
41         struct obd_export *exp = req->rq_export;
42         struct obd_device *obd = exp->exp_obd;
43         struct obd_device *disk_obd;
44         struct llog_handle  *loghandle;
45         struct llogd_body *body;
46         struct obd_run_ctxt saved;
47         struct llog_logid *logid = NULL;
48         struct llog_ctxt *ctxt;
49         char * name = NULL;
50         int size = sizeof (*body);
51         int rc, rc2;
52         ENTRY;
53
54         body = lustre_swab_reqbuf(req, 0, sizeof(*body),
55                                  lustre_swab_llogd_body);
56         if (body == NULL) {
57                 CERROR ("Can't unpack llogd_body\n");
58                 GOTO(out, rc =-EFAULT);
59         }
60
61         if (body->lgd_logid.lgl_oid > 0)
62                 logid = &body->lgd_logid;
63
64         if (req->rq_reqmsg->bufcount > 1) {
65                 name = lustre_msg_string(req->rq_reqmsg, 1, 0);
66                 if (name == NULL) {
67                         CERROR("Can't unpack name\n");
68                         GOTO(out, rc = -EFAULT);
69                 }
70         }
71
72         ctxt = llog_get_context(obd, body->lgd_ctxt_idx);
73         LASSERT(ctxt != NULL);
74         disk_obd = ctxt->loc_exp->exp_obd;
75         push_ctxt(&saved, &disk_obd->obd_ctxt, NULL);
76
77         rc = llog_create(ctxt, &loghandle, logid, name);
78         if (rc)
79                 GOTO(out_pop, rc);
80
81         rc = lustre_pack_reply(req, 1, &size, NULL);
82         if (rc)
83                 GOTO(out_close, rc = -ENOMEM);
84
85         body = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*body));
86         body->lgd_logid = loghandle->lgh_id;
87
88 out_close:
89         rc2 = llog_close(loghandle);
90         if (!rc)
91                 rc = rc2;
92 out_pop:
93         pop_ctxt(&saved, &disk_obd->obd_ctxt, NULL);
94 out:
95         RETURN(rc);
96 }
97
98 int llog_origin_handle_next_block(struct ptlrpc_request *req)
99 {
100         struct obd_export *exp = req->rq_export;
101         struct obd_device *obd = exp->exp_obd;
102         struct obd_device *disk_obd;
103         struct llog_handle  *loghandle;
104         struct llogd_body *body;
105         struct obd_run_ctxt saved;
106         struct llog_ctxt *ctxt;
107         __u32 flags;
108         __u8 *buf;
109         void * ptr;
110         int size[] = {sizeof (*body),
111                       LLOG_CHUNK_SIZE};
112         int rc, rc2;
113         ENTRY;
114
115         body = lustre_swab_reqbuf(req, 0, sizeof(*body),
116                                   lustre_swab_llogd_body);
117         if (body == NULL) {
118                 CERROR ("Can't unpack llogd_body\n");
119                 GOTO(out, rc =-EFAULT);
120         }
121
122         OBD_ALLOC(buf, LLOG_CHUNK_SIZE);
123         if (!buf)
124                 GOTO(out, rc = -ENOMEM);
125
126         ctxt = llog_get_context(obd, body->lgd_ctxt_idx);
127         LASSERT(ctxt != NULL);
128         disk_obd = ctxt->loc_exp->exp_obd;
129         push_ctxt(&saved, &disk_obd->obd_ctxt, NULL);
130
131         rc = llog_create(ctxt, &loghandle, &body->lgd_logid, NULL);
132         if (rc)
133                 GOTO(out_pop, rc);
134
135         flags = body->lgd_llh_flags;
136         rc = llog_init_handle(loghandle, flags, NULL);
137         if (rc)
138                 GOTO(out_close, rc);
139
140         memset(buf, 0, LLOG_CHUNK_SIZE);
141         rc = llog_next_block(loghandle, &body->lgd_saved_index,
142                              body->lgd_index,
143                              &body->lgd_cur_offset, buf, LLOG_CHUNK_SIZE);
144         if (rc)
145                 GOTO(out_close, rc);
146
147
148         rc = lustre_pack_reply(req, 2, size, NULL);
149         if (rc)
150                 GOTO(out_close, rc = -ENOMEM);
151
152         ptr = lustre_msg_buf(req->rq_repmsg, 0, sizeof (body));
153         memcpy(ptr, body, sizeof(*body));
154
155         ptr = lustre_msg_buf(req->rq_repmsg, 1, LLOG_CHUNK_SIZE);
156         memcpy(ptr, buf, LLOG_CHUNK_SIZE);
157
158 out_close:
159         rc2 = llog_close(loghandle);
160         if (!rc)
161                 rc = rc2;
162
163 out_pop:
164         pop_ctxt(&saved, &disk_obd->obd_ctxt, NULL);
165         OBD_FREE(buf, LLOG_CHUNK_SIZE);
166 out:
167         RETURN(rc);
168 }
169
170 int llog_origin_handle_read_header(struct ptlrpc_request *req)
171 {
172         struct obd_export *exp = req->rq_export;
173         struct obd_device *obd = exp->exp_obd;
174         struct obd_device *disk_obd;
175         struct llog_handle  *loghandle;
176         struct llogd_body *body;
177         struct llog_log_hdr *hdr;
178         struct obd_run_ctxt saved;
179         struct llog_ctxt *ctxt;
180         __u32 flags;
181         __u8 *buf;
182         int size[] = {sizeof (*hdr)};
183         int rc, rc2;
184         ENTRY;
185
186         body = lustre_swab_reqbuf(req, 0, sizeof(*body),
187                                   lustre_swab_llogd_body);
188         if (body == NULL) {
189                 CERROR ("Can't unpack llogd_body\n");
190                 GOTO(out, rc =-EFAULT);
191         }
192
193         OBD_ALLOC(buf, LLOG_CHUNK_SIZE);
194         if (!buf)
195                 GOTO(out, rc = -ENOMEM);
196
197         ctxt = llog_get_context(obd, body->lgd_ctxt_idx);
198         LASSERT(ctxt != NULL);
199         disk_obd = ctxt->loc_exp->exp_obd;
200         push_ctxt(&saved, &disk_obd->obd_ctxt, NULL);
201
202         rc = llog_create(ctxt, &loghandle, &body->lgd_logid, NULL);
203         if (rc)
204                 GOTO(out_pop, rc);
205
206         /* init_handle reads the header */
207         flags = body->lgd_llh_flags;
208         rc = llog_init_handle(loghandle, flags, NULL);
209         if (rc)
210                 GOTO(out_close, rc);
211
212
213         rc = lustre_pack_reply(req, 1, size, NULL);
214         if (rc)
215                 GOTO(out_close, rc = -ENOMEM);
216
217         hdr = lustre_msg_buf(req->rq_repmsg, 0, sizeof (*hdr));
218         memcpy(hdr, loghandle->lgh_hdr, sizeof(*hdr));
219
220 out_close:
221         rc2 = llog_close(loghandle);
222         if (!rc)
223                 rc = rc2;
224
225 out_pop:
226         pop_ctxt(&saved, &disk_obd->obd_ctxt, NULL);
227         OBD_FREE(buf, LLOG_CHUNK_SIZE);
228
229 out:
230         RETURN(rc);
231 }
232
233 int llog_origin_handle_close(struct ptlrpc_request *req)
234 {
235         int rc;
236
237         rc = 0;
238
239         RETURN(rc);
240 }
241
242 int llog_origin_handle_cancel(struct ptlrpc_request *req)
243 {
244         struct obd_device *obd = req->rq_export->exp_obd;
245         struct obd_device *disk_obd;
246         struct llog_cookie *logcookies;
247         struct llog_ctxt *ctxt;
248         int num_cookies, rc = 0, err, i;
249         struct obd_run_ctxt saved;
250         struct llog_handle *cathandle;
251         struct inode *inode;
252         void *handle;
253         ENTRY;
254
255         logcookies = lustre_msg_buf(req->rq_reqmsg, 0, sizeof(*logcookies));
256         num_cookies = req->rq_reqmsg->buflens[0]/sizeof(*logcookies);
257         if (logcookies == NULL || num_cookies == 0) {
258                 DEBUG_REQ(D_HA, req, "no cookies sent");
259                 RETURN(-EFAULT);
260         }
261
262         ctxt = llog_get_context(obd, logcookies->lgc_subsys);
263         if (ctxt == NULL) {
264                 CWARN("llog subsys not setup or already cleanup\n");
265                 RETURN(-ENOENT);
266         }
267
268         disk_obd = ctxt->loc_exp->exp_obd;
269         push_ctxt(&saved, &disk_obd->obd_ctxt, NULL);
270         for (i = 0; i < num_cookies; i++, logcookies++) {
271                 cathandle = ctxt->loc_handle;
272                 LASSERT(cathandle != NULL);
273                 inode = cathandle->lgh_file->f_dentry->d_inode;
274
275                 handle = fsfilt_start(disk_obd, inode,
276                                       FSFILT_OP_CANCEL_UNLINK_LOG, NULL);
277                 if (IS_ERR(handle)) {
278                         CERROR("fsfilt_start failed: %ld\n", PTR_ERR(handle));
279                         GOTO(pop_ctxt, rc = PTR_ERR(handle));
280                 }
281
282                 rc = llog_cat_cancel_records(cathandle, 1, logcookies);
283
284                 err = fsfilt_commit(disk_obd, inode, handle, 0);
285                 if (err) {
286                         CERROR("error committing transaction: %d\n", err);
287                         if (!rc)
288                                 rc = err;
289                         GOTO(pop_ctxt, rc);
290                 }
291         }
292 pop_ctxt:
293         pop_ctxt(&saved, &disk_obd->obd_ctxt, NULL);
294         if (rc)
295                 CERROR("cancel %d llog-records failed: %d\n", num_cookies, rc);
296         else
297                 CDEBUG(D_HA, "cancel %d llog-records\n", num_cookies);
298
299         RETURN(rc);
300 }
301 EXPORT_SYMBOL(llog_origin_handle_cancel);
302
303 static int llog_catinfo_config(struct obd_device *obd, char *buf, int buf_len,
304                                char *client)
305 {
306         struct mds_obd *mds = &obd->u.mds;
307         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
308         struct obd_run_ctxt saved;
309         struct llog_handle *handle = NULL;
310         char name[4][64];
311         int rc, i, l, remains = buf_len;
312         char *out = buf;
313
314         if (ctxt == NULL || mds == NULL)
315                 RETURN(-EOPNOTSUPP);
316
317         push_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_ctxt, NULL);
318
319         sprintf(name[0], "%s", mds->mds_profile);
320         sprintf(name[1], "%s-clean", mds->mds_profile);
321         sprintf(name[2], "%s", client);
322         sprintf(name[3], "%s-clean", client);
323
324         for (i = 0; i < 4; i++) {
325                 int index, uncanceled = 0;
326                 rc = llog_create(ctxt, &handle, NULL, name[i]);
327                 if (rc)
328                         GOTO(out_pop, rc);
329                 rc = llog_init_handle(handle, 0, NULL);
330                 if (rc) {
331                         llog_close(handle);
332                         GOTO(out_pop, rc = -ENOENT);
333                 }
334
335                 for (index = 1; index < (LLOG_BITMAP_BYTES * 8); index ++) {
336                         if (ext2_test_bit(index, handle->lgh_hdr->llh_bitmap))
337                                 uncanceled++;
338                 }
339
340                 l = snprintf(out, remains, "[Log Name]: %s\nLog Size: %llu\n"
341                              "Last Index: %d\nUncanceled Records: %d\n\n",
342                              name[i],
343                              handle->lgh_file->f_dentry->d_inode->i_size,
344                              handle->lgh_last_idx, uncanceled);
345                 out += l;
346                 remains -= l;
347
348                 llog_close(handle);
349                 if (remains <= 0)
350                         break;
351         }
352 out_pop:
353         pop_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_ctxt, NULL);
354         RETURN(rc);
355 }
356
357 struct cb_data {
358         struct llog_ctxt *ctxt;
359         char *out;
360         int  remains;
361         int  init;
362 };
363
364 static int llog_catinfo_cb(struct llog_handle *cat,
365                            struct llog_rec_hdr *rec, void *data)
366 {
367         static char *out = NULL;
368         static int remains = 0;
369         struct llog_ctxt *ctxt;
370         struct llog_handle *handle;
371         struct llog_logid *logid;
372         struct llog_logid_rec *lir;
373         int l, rc, index, count = 0;
374         struct cb_data *cbd = (struct cb_data*)data;
375
376         if (cbd->init) {
377                 out = cbd->out;
378                 remains = cbd->remains;
379                 cbd->init = 0;
380         }
381         ctxt = cbd->ctxt;
382
383         if (!(cat->lgh_hdr->llh_flags & cpu_to_le32(LLOG_F_IS_CAT)))
384                 RETURN(-EINVAL);
385
386         lir = (struct llog_logid_rec *)rec;
387         logid = &lir->lid_id;
388         rc = llog_create(ctxt, &handle, logid, NULL);
389         if (rc)
390                 RETURN(-EINVAL);
391         rc = llog_init_handle(handle, 0, NULL);
392         if (rc)
393                 GOTO(out_close, rc);
394
395         for (index = 1; index < (LLOG_BITMAP_BYTES * 8); index++) {
396                 if (ext2_test_bit(index, handle->lgh_hdr->llh_bitmap))
397                         count++;
398         }
399
400         l = snprintf(out, remains, "\t[Log ID]: #"LPX64"#"LPX64"#%08x\n"
401                      "\tLog Size: %llu\n\tLast Index: %d\n"
402                      "\tUncanceled Records: %d\n",
403                      logid->lgl_oid, logid->lgl_ogr, logid->lgl_ogen,
404                      handle->lgh_file->f_dentry->d_inode->i_size,
405                      handle->lgh_last_idx, count);
406         out += l;
407         remains -= l;
408         cbd->out = out;
409         cbd->remains = remains;
410         if (remains <= 0) {
411                 CWARN("Not enough memory\n");
412                 rc = -ENOMEM;
413         }
414
415 out_close:
416         llog_close(handle);
417         RETURN(rc);
418 }
419
420 static int llog_catinfo_deletions(struct obd_device *obd, char *buf,
421                                   int buf_len)
422 {
423         struct mds_obd *mds = &obd->u.mds;
424         struct llog_handle *handle;
425         struct obd_run_ctxt saved;
426         int size, i, count;
427         struct llog_logid *idarray, *id;
428         char name[32] = "CATLIST";
429         int rc;
430         struct cb_data data;
431         struct llog_ctxt *ctxt = llog_get_context(obd, LLOG_CONFIG_ORIG_CTXT);
432
433         if (ctxt == NULL || mds == NULL)
434                 RETURN(-EOPNOTSUPP);
435
436         count = mds->mds_lov_desc.ld_tgt_count;
437         size = sizeof(*idarray) * count;
438
439         OBD_ALLOC(idarray, size);
440         if (!idarray)
441                 RETURN(-ENOMEM);
442         memset(idarray, 0, size);
443
444         rc = llog_get_cat_list(obd, obd, name, count, idarray);
445         if (rc)
446                 GOTO(out_free, rc);
447
448         push_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_ctxt, NULL);
449
450         id = idarray;
451         data.ctxt = ctxt;
452         data.out = buf;
453         data.remains = buf_len;
454         for (i = 0; i < count; i++) {
455                 int l, index, uncanceled = 0;
456                 rc = llog_create(ctxt, &handle, id, NULL);
457                 if (rc)
458                         GOTO(out_pop, rc);
459                 rc = llog_init_handle(handle, 0, NULL);
460                 if (rc) {
461                         llog_close(handle);
462                         GOTO(out_pop, rc = -ENOENT);
463                 }
464                 for (index = 1; index < (LLOG_BITMAP_BYTES * 8); index++) {
465                         if (ext2_test_bit(index, handle->lgh_hdr->llh_bitmap))
466                                 uncanceled++;
467                 }
468                 l = snprintf(data.out, data.remains,
469                              "\n[Catlog ID]: #"LPX64"#"LPX64"#%08x  "
470                              "[Log Count]: %d\n",
471                              id->lgl_oid, id->lgl_ogr, id->lgl_ogen,
472                              uncanceled);
473
474                 data.out += l;
475                 data.remains -= l;
476                 data.init = 1;
477
478                 llog_process(handle, llog_catinfo_cb, &data, NULL);
479                 llog_close(handle);
480
481                 if (data.remains <= 0)
482                         break;
483         }
484 out_pop:
485         pop_ctxt(&saved, &ctxt->loc_exp->exp_obd->obd_ctxt, NULL);
486 out_free:
487         OBD_FREE(idarray, size);
488         RETURN(rc);
489 }
490
491 int llog_catinfo(struct ptlrpc_request *req)
492 {
493         struct obd_export *exp = req->rq_export;
494         struct obd_device *obd = exp->exp_obd;
495         char *keyword;
496         char *buf, *reply;
497         int rc, buf_len = LLOG_CHUNK_SIZE;
498
499         OBD_ALLOC(buf, buf_len);
500         if (buf == NULL)
501                 return -ENOMEM;
502         memset(buf, 0, buf_len);
503
504         keyword = lustre_msg_string(req->rq_reqmsg, 0, 0);
505
506         if (strcmp(keyword, "config") == 0) {
507                 char *client = lustre_msg_string(req->rq_reqmsg, 1, 0);
508                 rc = llog_catinfo_config(obd, buf, buf_len, client);
509         } else if (strcmp(keyword, "deletions") == 0) {
510                 rc = llog_catinfo_deletions(obd, buf, buf_len);
511         } else {
512                 rc = -EOPNOTSUPP;
513         }
514
515         rc = lustre_pack_reply(req, 1, &buf_len, NULL);
516         if (rc)
517                 GOTO(out_free, rc = -ENOMEM);
518
519         reply = lustre_msg_buf(req->rq_repmsg, 0, buf_len);
520         if (strlen(buf) == 0)
521                 sprintf(buf, "%s", "No log informations\n");
522         memcpy(reply, buf, buf_len);
523
524 out_free:
525         OBD_FREE(buf, buf_len);
526         return rc;
527 }