Whamcloud - gitweb
LU-1347 style: removes obsolete EXPORT_SYMTAB macros
[fs/lustre-release.git] / lustre / obdclass / llog_ioctl.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_LOG
38
39 #include <obd_class.h>
40 #include <lustre_log.h>
41 #include <libcfs/list.h>
42 #include "llog_internal.h"
43
44 static int str2logid(struct llog_logid *logid, char *str, int len)
45 {
46         char *start, *end, *endp;
47
48         ENTRY;
49         start = str;
50         if (*start != '#')
51                 RETURN(-EINVAL);
52
53         start++;
54         if (start - str >= len - 1)
55                 RETURN(-EINVAL);
56         end = strchr(start, '#');
57         if (end == NULL || end == start)
58                 RETURN(-EINVAL);
59
60         *end = '\0';
61         logid->lgl_oid = simple_strtoull(start, &endp, 0);
62         if (endp != end)
63                 RETURN(-EINVAL);
64
65         start = ++end;
66         if (start - str >= len - 1)
67                 RETURN(-EINVAL);
68         end = strchr(start, '#');
69         if (end == NULL || end == start)
70                 RETURN(-EINVAL);
71
72         *end = '\0';
73         logid->lgl_oseq = simple_strtoull(start, &endp, 0);
74         if (endp != end)
75                 RETURN(-EINVAL);
76
77         start = ++end;
78         if (start - str >= len - 1)
79                 RETURN(-EINVAL);
80         logid->lgl_ogen = simple_strtoul(start, &endp, 16);
81         if (*endp != '\0')
82                 RETURN(-EINVAL);
83
84         RETURN(0);
85 }
86
87 static int llog_check_cb(struct llog_handle *handle, struct llog_rec_hdr *rec,
88                          void *data)
89 {
90         struct obd_ioctl_data *ioc_data = (struct obd_ioctl_data *)data;
91         static int l, remains, from, to;
92         static char *out;
93         char *endp;
94         int cur_index, rc = 0;
95
96         ENTRY;
97         cur_index = rec->lrh_index;
98
99         if (ioc_data && (ioc_data->ioc_inllen1)) {
100                 l = 0;
101                 remains = ioc_data->ioc_inllen4 +
102                         cfs_size_round(ioc_data->ioc_inllen1) +
103                         cfs_size_round(ioc_data->ioc_inllen2) +
104                         cfs_size_round(ioc_data->ioc_inllen3);
105                 from = simple_strtol(ioc_data->ioc_inlbuf2, &endp, 0);
106                 if (*endp != '\0')
107                         RETURN(-EINVAL);
108                 to = simple_strtol(ioc_data->ioc_inlbuf3, &endp, 0);
109                 if (*endp != '\0')
110                         RETURN(-EINVAL);
111                 ioc_data->ioc_inllen1 = 0;
112                 out = ioc_data->ioc_bulk;
113                 if (cur_index < from)
114                         RETURN(0);
115                 if (to > 0 && cur_index > to)
116                         RETURN(-LLOG_EEMPTY);
117         }
118         if (handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT) {
119                 struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
120                 struct llog_handle *log_handle;
121
122                 if (rec->lrh_type != LLOG_LOGID_MAGIC) {
123                         l = snprintf(out, remains, "[index]: %05d  [type]: "
124                                      "%02x  [len]: %04d failed\n",
125                                      cur_index, rec->lrh_type,
126                                      rec->lrh_len);
127                 }
128                 if (handle->lgh_ctxt == NULL)
129                         RETURN(-EOPNOTSUPP);
130                 rc = llog_cat_id2handle(handle, &log_handle, &lir->lid_id);
131                 if (rc) {
132                         CDEBUG(D_IOCTL,
133                                "cannot find log #"LPX64"#"LPX64"#%08x\n",
134                                lir->lid_id.lgl_oid, lir->lid_id.lgl_oseq,
135                                lir->lid_id.lgl_ogen);
136                         RETURN(rc);
137                 }
138                 rc = llog_process(log_handle, llog_check_cb, NULL, NULL);
139                 llog_close(log_handle);
140         } else {
141                 switch (rec->lrh_type) {
142                 case OST_SZ_REC:
143                 case OST_RAID1_REC:
144                 case MDS_UNLINK_REC:
145                 case MDS_SETATTR_REC:
146                 case MDS_SETATTR64_REC:
147                 case OBD_CFG_REC:
148                 case LLOG_HDR_MAGIC: {
149                          l = snprintf(out, remains, "[index]: %05d  [type]: "
150                                       "%02x  [len]: %04d ok\n",
151                                       cur_index, rec->lrh_type,
152                                       rec->lrh_len);
153                          out += l;
154                          remains -= l;
155                          if (remains <= 0) {
156                                 CERROR("no space to print log records\n");
157                                 RETURN(-LLOG_EEMPTY);
158                          }
159                          RETURN(0);
160                 }
161                 default: {
162                          l = snprintf(out, remains, "[index]: %05d  [type]: "
163                                       "%02x  [len]: %04d failed\n",
164                                       cur_index, rec->lrh_type,
165                                       rec->lrh_len);
166                          out += l;
167                          remains -= l;
168                          if (remains <= 0) {
169                                 CERROR("no space to print log records\n");
170                                 RETURN(-LLOG_EEMPTY);
171                          }
172                          RETURN(0);
173                 }
174                 }
175         }
176         RETURN(rc);
177 }
178
179 static int llog_print_cb(struct llog_handle *handle, struct llog_rec_hdr *rec,
180                          void *data)
181 {
182         struct obd_ioctl_data *ioc_data = (struct obd_ioctl_data *)data;
183         static int l, remains, from, to;
184         static char *out;
185         char *endp;
186         int cur_index;
187
188         ENTRY;
189         if (ioc_data->ioc_inllen1) {
190                 l = 0;
191                 remains = ioc_data->ioc_inllen4 +
192                         cfs_size_round(ioc_data->ioc_inllen1) +
193                         cfs_size_round(ioc_data->ioc_inllen2) +
194                         cfs_size_round(ioc_data->ioc_inllen3);
195                 from = simple_strtol(ioc_data->ioc_inlbuf2, &endp, 0);
196                 if (*endp != '\0')
197                         RETURN(-EINVAL);
198                 to = simple_strtol(ioc_data->ioc_inlbuf3, &endp, 0);
199                 if (*endp != '\0')
200                         RETURN(-EINVAL);
201                 out = ioc_data->ioc_bulk;
202                 ioc_data->ioc_inllen1 = 0;
203         }
204
205         cur_index = rec->lrh_index;
206         if (cur_index < from)
207                 RETURN(0);
208         if (to > 0 && cur_index > to)
209                 RETURN(-LLOG_EEMPTY);
210
211         if (handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT) {
212                 struct llog_logid_rec *lir = (struct llog_logid_rec *)rec;
213                 if (rec->lrh_type != LLOG_LOGID_MAGIC) {
214                         CERROR("invalid record in catalog\n");
215                         RETURN(-EINVAL);
216                 }
217
218                 l = snprintf(out, remains,
219                              "[index]: %05d  [logid]: #"LPX64"#"LPX64"#%08x\n",
220                              cur_index, lir->lid_id.lgl_oid,
221                              lir->lid_id.lgl_oseq, lir->lid_id.lgl_ogen);
222         } else {
223                 l = snprintf(out, remains,
224                              "[index]: %05d  [type]: %02x  [len]: %04d\n",
225                              cur_index, rec->lrh_type,
226                              rec->lrh_len);
227         }
228         out += l;
229         remains -= l;
230         if (remains <= 0) {
231                 CERROR("not enough space for print log records\n");
232                 RETURN(-LLOG_EEMPTY);
233         }
234
235         RETURN(0);
236 }
237 static int llog_remove_log(struct llog_handle *cat, struct llog_logid *logid)
238 {
239         struct llog_handle *log;
240         int rc, index = 0;
241
242         ENTRY;
243         cfs_down_write(&cat->lgh_lock);
244         rc = llog_cat_id2handle(cat, &log, logid);
245         if (rc) {
246                 CDEBUG(D_IOCTL, "cannot find log #"LPX64"#"LPX64"#%08x\n",
247                        logid->lgl_oid, logid->lgl_oseq, logid->lgl_ogen);
248                 GOTO(out, rc = -ENOENT);
249         }
250
251         index = log->u.phd.phd_cookie.lgc_index;
252         LASSERT(index);
253         rc = llog_destroy(log);
254         if (rc) {
255                 CDEBUG(D_IOCTL, "cannot destroy log\n");
256                 GOTO(out, rc);
257         }
258         llog_cat_set_first_idx(cat, index);
259         rc = llog_cancel_rec(cat, index);
260 out:
261         llog_free_handle(log);
262         cfs_up_write(&cat->lgh_lock);
263         RETURN(rc);
264
265 }
266
267 static int llog_delete_cb(struct llog_handle *handle, struct llog_rec_hdr *rec,
268                           void *data)
269 {
270         struct  llog_logid_rec *lir = (struct llog_logid_rec*)rec;
271         int     rc;
272
273         ENTRY;
274         if (rec->lrh_type != LLOG_LOGID_MAGIC)
275               RETURN (-EINVAL);
276         rc = llog_remove_log(handle, &lir->lid_id);
277
278         RETURN(rc);
279 }
280
281
282 int llog_ioctl(struct llog_ctxt *ctxt, int cmd, struct obd_ioctl_data *data)
283 {
284         struct llog_logid logid;
285         int err = 0;
286         struct llog_handle *handle = NULL;
287
288         ENTRY;
289         if (*data->ioc_inlbuf1 == '#') {
290                 err = str2logid(&logid, data->ioc_inlbuf1, data->ioc_inllen1);
291                 if (err)
292                         GOTO(out, err);
293                 err = llog_create(ctxt, &handle, &logid, NULL);
294                 if (err)
295                         GOTO(out, err);
296         } else if (*data->ioc_inlbuf1 == '$') {
297                 char *name = data->ioc_inlbuf1 + 1;
298                 err = llog_create(ctxt, &handle, NULL, name);
299                 if (err)
300                         GOTO(out, err);
301         } else {
302                 GOTO(out, err = -EINVAL);
303         }
304
305         err = llog_init_handle(handle, 0, NULL);
306         if (err)
307                 GOTO(out_close, err = -ENOENT);
308
309         switch (cmd) {
310         case OBD_IOC_LLOG_INFO: {
311                 int l;
312                 int remains = data->ioc_inllen2 +
313                         cfs_size_round(data->ioc_inllen1);
314                 char *out = data->ioc_bulk;
315
316                 l = snprintf(out, remains,
317                              "logid:            #"LPX64"#"LPX64"#%08x\n"
318                              "flags:            %x (%s)\n"
319                              "records count:    %d\n"
320                              "last index:       %d\n",
321                              handle->lgh_id.lgl_oid, handle->lgh_id.lgl_oseq,
322                              handle->lgh_id.lgl_ogen,
323                              handle->lgh_hdr->llh_flags,
324                              handle->lgh_hdr->llh_flags &
325                              LLOG_F_IS_CAT ? "cat" : "plain",
326                              handle->lgh_hdr->llh_count,
327                              handle->lgh_last_idx);
328                 out += l;
329                 remains -= l;
330                 if (remains <= 0)
331                         CERROR("not enough space for log header info\n");
332
333                 GOTO(out_close, err);
334         }
335         case OBD_IOC_LLOG_CHECK: {
336                 LASSERT(data->ioc_inllen1);
337                 err = llog_process(handle, llog_check_cb, data, NULL);
338                 if (err == -LLOG_EEMPTY)
339                         err = 0;
340                 GOTO(out_close, err);
341         }
342
343         case OBD_IOC_LLOG_PRINT: {
344                 LASSERT(data->ioc_inllen1);
345                 err = llog_process(handle, class_config_dump_handler,data,NULL);
346                 if (err == -LLOG_EEMPTY)
347                         err = 0;
348                 else
349                         err = llog_process(handle, llog_print_cb, data, NULL);
350
351                 GOTO(out_close, err);
352         }
353         case OBD_IOC_LLOG_CANCEL: {
354                 struct llog_cookie cookie;
355                 struct llog_logid plain;
356                 char *endp;
357
358                 cookie.lgc_index = simple_strtoul(data->ioc_inlbuf3, &endp, 0);
359                 if (*endp != '\0')
360                         GOTO(out_close, err = -EINVAL);
361
362                 if (handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT) {
363                         cfs_down_write(&handle->lgh_lock);
364                         err = llog_cancel_rec(handle, cookie.lgc_index);
365                         cfs_up_write(&handle->lgh_lock);
366                         GOTO(out_close, err);
367                 }
368
369                 err = str2logid(&plain, data->ioc_inlbuf2, data->ioc_inllen2);
370                 if (err)
371                         GOTO(out_close, err);
372                 cookie.lgc_lgl = plain;
373
374                 if (!(handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT))
375                         GOTO(out_close, err = -EINVAL);
376
377                 err = llog_cat_cancel_records(handle, 1, &cookie);
378                 GOTO(out_close, err);
379         }
380         case OBD_IOC_LLOG_REMOVE: {
381                 struct llog_logid plain;
382
383                 if (handle->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN) {
384                         err = llog_destroy(handle);
385                         if (!err)
386                                 llog_free_handle(handle);
387                         GOTO(out, err);
388                 }
389
390                 if (!(handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT))
391                         GOTO(out_close, err = -EINVAL);
392
393                 if (data->ioc_inlbuf2) {
394                         /*remove indicate log from the catalog*/
395                         err = str2logid(&plain, data->ioc_inlbuf2,
396                                         data->ioc_inllen2);
397                         if (err)
398                                 GOTO(out_close, err);
399                         err = llog_remove_log(handle, &plain);
400                 } else {
401                         /*remove all the log of the catalog*/
402                         llog_process(handle, llog_delete_cb, NULL, NULL);
403                 }
404                 GOTO(out_close, err);
405         }
406         }
407
408 out_close:
409         if (handle->lgh_hdr &&
410             handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT)
411                 llog_cat_put(handle);
412         else
413                 llog_close(handle);
414 out:
415         RETURN(err);
416 }
417 EXPORT_SYMBOL(llog_ioctl);
418
419 int llog_catalog_list(struct obd_device *obd, int count,
420                       struct obd_ioctl_data *data)
421 {
422         int size, i;
423         struct llog_catid *idarray;
424         struct llog_logid *id;
425         char name[32] = CATLIST;
426         char *out;
427         int l, remains, rc = 0;
428
429         ENTRY;
430         size = sizeof(*idarray) * count;
431
432         OBD_ALLOC_LARGE(idarray, size);
433         if (!idarray)
434                 RETURN(-ENOMEM);
435
436         cfs_mutex_lock(&obd->obd_olg.olg_cat_processing);
437         rc = llog_get_cat_list(obd, name, 0, count, idarray);
438         if (rc)
439                 GOTO(out, rc);
440
441         out = data->ioc_bulk;
442         remains = data->ioc_inllen1;
443         for (i = 0; i < count; i++) {
444                 id = &idarray[i].lci_logid;
445                 l = snprintf(out, remains,
446                              "catalog log: #"LPX64"#"LPX64"#%08x\n",
447                              id->lgl_oid, id->lgl_oseq, id->lgl_ogen);
448                 out += l;
449                 remains -= l;
450                 if (remains <= 0) {
451                         CWARN("not enough memory for catlog list\n");
452                         break;
453                 }
454         }
455 out:
456         /* release semaphore */
457         cfs_mutex_unlock(&obd->obd_olg.olg_cat_processing);
458
459         OBD_FREE_LARGE(idarray, size);
460         RETURN(rc);
461
462 }
463 EXPORT_SYMBOL(llog_catalog_list);