4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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.
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).
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.gnu.org/licenses/gpl-2.0.html
23 * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24 * Use is subject to license terms.
26 * Copyright (c) 2012, 2015, Intel Corporation.
29 * This file is part of Lustre, http://www.lustre.org/
30 * Lustre is a trademark of Sun Microsystems, Inc.
32 * lustre/ptlrpc/llog_client.c
34 * remote api for llog - client side
36 * Author: Andreas Dilger <adilger@clusterfs.com>
39 #define DEBUG_SUBSYSTEM S_LOG
41 #include <linux/list.h>
42 #include <libcfs/libcfs.h>
44 #include <obd_class.h>
45 #include <lustre_log.h>
46 #include <lustre_net.h>
48 #define LLOG_CLIENT_ENTRY(ctxt, imp) do { \
49 mutex_lock(&ctxt->loc_mutex); \
50 if (ctxt->loc_imp) { \
51 imp = class_import_get(ctxt->loc_imp); \
53 CERROR("ctxt->loc_imp == NULL for context idx %d." \
54 "Unable to complete MDS/OSS recovery," \
55 "but I'll try again next time. Not fatal.\n", \
58 mutex_unlock(&ctxt->loc_mutex); \
61 mutex_unlock(&ctxt->loc_mutex); \
64 #define LLOG_CLIENT_EXIT(ctxt, imp) do { \
65 mutex_lock(&ctxt->loc_mutex); \
66 if (ctxt->loc_imp != imp) \
67 CWARN("loc_imp has changed from %p to %p\n", \
68 ctxt->loc_imp, imp); \
69 class_import_put(imp); \
70 mutex_unlock(&ctxt->loc_mutex); \
74 * This is a callback from the llog_* functions.
75 * Assumes caller has already pushed us into the kernel context.
77 static int llog_client_open(const struct lu_env *env,
78 struct llog_handle *lgh, struct llog_logid *logid,
79 char *name, enum llog_open_param open_param)
81 struct obd_import *imp;
82 struct llogd_body *body;
83 struct llog_ctxt *ctxt = lgh->lgh_ctxt;
84 struct ptlrpc_request *req = NULL;
89 LLOG_CLIENT_ENTRY(ctxt, imp);
91 /* client cannot create llog */
92 LASSERTF(open_param != LLOG_OPEN_NEW, "%#x\n", open_param);
95 req = ptlrpc_request_alloc(imp, &RQF_LLOG_ORIGIN_HANDLE_CREATE);
97 GOTO(out, rc = -ENOMEM);
100 req_capsule_set_size(&req->rq_pill, &RMF_NAME, RCL_CLIENT,
103 rc = ptlrpc_request_pack(req, LUSTRE_LOG_VERSION,
104 LLOG_ORIGIN_HANDLE_CREATE);
106 ptlrpc_request_free(req);
110 ptlrpc_request_set_replen(req);
112 body = req_capsule_client_get(&req->rq_pill, &RMF_LLOGD_BODY);
114 body->lgd_logid = *logid;
115 body->lgd_ctxt_idx = ctxt->loc_idx - 1;
120 tmp = req_capsule_client_sized_get(&req->rq_pill, &RMF_NAME,
126 rc = ptlrpc_queue_wait(req);
130 body = req_capsule_server_get(&req->rq_pill, &RMF_LLOGD_BODY);
132 GOTO(out, rc = -EFAULT);
134 lgh->lgh_id = body->lgd_logid;
135 lgh->lgh_ctxt = ctxt;
138 LLOG_CLIENT_EXIT(ctxt, imp);
139 ptlrpc_req_finished(req);
143 static int llog_client_next_block(const struct lu_env *env,
144 struct llog_handle *loghandle,
145 int *cur_idx, int next_idx,
146 __u64 *cur_offset, void *buf, int len)
148 struct obd_import *imp;
149 struct ptlrpc_request *req = NULL;
150 struct llogd_body *body;
156 LLOG_CLIENT_ENTRY(loghandle->lgh_ctxt, imp);
157 req = ptlrpc_request_alloc_pack(imp, &RQF_LLOG_ORIGIN_HANDLE_NEXT_BLOCK,
159 LLOG_ORIGIN_HANDLE_NEXT_BLOCK);
161 GOTO(err_exit, rc = -ENOMEM);
163 body = req_capsule_client_get(&req->rq_pill, &RMF_LLOGD_BODY);
164 body->lgd_logid = loghandle->lgh_id;
165 body->lgd_ctxt_idx = loghandle->lgh_ctxt->loc_idx - 1;
166 body->lgd_llh_flags = loghandle->lgh_hdr->llh_flags;
167 body->lgd_index = next_idx;
168 body->lgd_saved_index = *cur_idx;
170 body->lgd_cur_offset = *cur_offset;
172 req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_SERVER, len);
173 ptlrpc_request_set_replen(req);
174 rc = ptlrpc_queue_wait(req);
176 * -EIO has a special meaning here. If llog_osd_next_block()
177 * reaches the end of the log without finding the desired
178 * record then it updates *cur_offset and *cur_idx and returns
179 * -EIO. In llog_process_thread() we use this to detect
180 * EOF. But we must be careful to distinguish between -EIO
181 * coming from llog_osd_next_block() and -EIO coming from
185 if (!req->rq_repmsg ||
186 lustre_msg_get_status(req->rq_repmsg) != -EIO)
192 body = req_capsule_server_get(&req->rq_pill, &RMF_LLOGD_BODY);
194 GOTO(out, rc = -EFAULT);
196 *cur_idx = body->lgd_saved_index;
197 *cur_offset = body->lgd_cur_offset;
202 /* The log records are swabbed as they are processed */
203 ptr = req_capsule_server_get(&req->rq_pill, &RMF_EADATA);
205 GOTO(out, rc = -EFAULT);
207 memcpy(buf, ptr, len);
210 ptlrpc_req_finished(req);
212 LLOG_CLIENT_EXIT(loghandle->lgh_ctxt, imp);
216 static int llog_client_prev_block(const struct lu_env *env,
217 struct llog_handle *loghandle,
218 int prev_idx, void *buf, int len)
220 struct obd_import *imp;
221 struct ptlrpc_request *req = NULL;
222 struct llogd_body *body;
228 LLOG_CLIENT_ENTRY(loghandle->lgh_ctxt, imp);
229 req = ptlrpc_request_alloc_pack(imp, &RQF_LLOG_ORIGIN_HANDLE_PREV_BLOCK,
231 LLOG_ORIGIN_HANDLE_PREV_BLOCK);
233 GOTO(err_exit, rc = -ENOMEM);
235 body = req_capsule_client_get(&req->rq_pill, &RMF_LLOGD_BODY);
236 body->lgd_logid = loghandle->lgh_id;
237 body->lgd_ctxt_idx = loghandle->lgh_ctxt->loc_idx - 1;
238 body->lgd_llh_flags = loghandle->lgh_hdr->llh_flags;
239 body->lgd_index = prev_idx;
242 req_capsule_set_size(&req->rq_pill, &RMF_EADATA, RCL_SERVER, len);
243 ptlrpc_request_set_replen(req);
245 rc = ptlrpc_queue_wait(req);
249 body = req_capsule_server_get(&req->rq_pill, &RMF_LLOGD_BODY);
251 GOTO(out, rc = -EFAULT);
253 ptr = req_capsule_server_get(&req->rq_pill, &RMF_EADATA);
255 GOTO(out, rc = -EFAULT);
257 memcpy(buf, ptr, len);
260 ptlrpc_req_finished(req);
262 LLOG_CLIENT_EXIT(loghandle->lgh_ctxt, imp);
266 static int llog_client_read_header(const struct lu_env *env,
267 struct llog_handle *handle)
269 struct obd_import *imp;
270 struct ptlrpc_request *req = NULL;
271 struct llogd_body *body;
272 struct llog_log_hdr *hdr;
273 struct llog_rec_hdr *llh_hdr;
278 LLOG_CLIENT_ENTRY(handle->lgh_ctxt, imp);
279 req = ptlrpc_request_alloc_pack(imp,
280 &RQF_LLOG_ORIGIN_HANDLE_READ_HEADER,
282 LLOG_ORIGIN_HANDLE_READ_HEADER);
284 GOTO(err_exit, rc = -ENOMEM);
286 body = req_capsule_client_get(&req->rq_pill, &RMF_LLOGD_BODY);
287 body->lgd_logid = handle->lgh_id;
288 body->lgd_ctxt_idx = handle->lgh_ctxt->loc_idx - 1;
289 body->lgd_llh_flags = handle->lgh_hdr->llh_flags;
291 ptlrpc_request_set_replen(req);
292 rc = ptlrpc_queue_wait(req);
296 hdr = req_capsule_server_get(&req->rq_pill, &RMF_LLOG_LOG_HDR);
298 GOTO(out, rc = -EFAULT);
300 if (handle->lgh_hdr_size < hdr->llh_hdr.lrh_len)
301 GOTO(out, rc = -EFAULT);
303 memcpy(handle->lgh_hdr, hdr, hdr->llh_hdr.lrh_len);
304 handle->lgh_last_idx = LLOG_HDR_TAIL(handle->lgh_hdr)->lrt_index;
307 llh_hdr = &handle->lgh_hdr->llh_hdr;
308 if (llh_hdr->lrh_type != LLOG_HDR_MAGIC) {
309 CERROR("bad log header magic: %#x (expecting %#x)\n",
310 llh_hdr->lrh_type, LLOG_HDR_MAGIC);
312 } else if (llh_hdr->lrh_len !=
313 LLOG_HDR_TAIL(handle->lgh_hdr)->lrt_len ||
314 (llh_hdr->lrh_len & (llh_hdr->lrh_len - 1)) != 0 ||
315 llh_hdr->lrh_len < LLOG_MIN_CHUNK_SIZE ||
316 llh_hdr->lrh_len > handle->lgh_hdr_size) {
317 CERROR("incorrectly sized log header: %#x, expecting %#x (power of two > 8192)\n",
319 LLOG_HDR_TAIL(handle->lgh_hdr)->lrt_len);
320 CERROR("you may need to re-run lconf --write_conf.\n");
325 ptlrpc_req_finished(req);
327 LLOG_CLIENT_EXIT(handle->lgh_ctxt, imp);
331 static int llog_client_close(const struct lu_env *env,
332 struct llog_handle *handle)
335 * this doesn't call LLOG_ORIGIN_HANDLE_CLOSE because
336 * the servers all close the file at the end of every
342 struct llog_operations llog_client_ops = {
343 .lop_next_block = llog_client_next_block,
344 .lop_prev_block = llog_client_prev_block,
345 .lop_read_header = llog_client_read_header,
346 .lop_open = llog_client_open,
347 .lop_close = llog_client_close,
349 EXPORT_SYMBOL(llog_client_ops);