Commit f51375cd authored by David Howells's avatar David Howells

afs: Add a couple of tracepoints to log I/O errors

Add a couple of tracepoints to log the production of I/O errors within the AFS
filesystem.
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
parent 4ac15ea5
...@@ -260,7 +260,7 @@ static int afs_deliver_cb_callback(struct afs_call *call) ...@@ -260,7 +260,7 @@ static int afs_deliver_cb_callback(struct afs_call *call)
} }
if (!afs_check_call_state(call, AFS_CALL_SV_REPLYING)) if (!afs_check_call_state(call, AFS_CALL_SV_REPLYING))
return -EIO; return afs_io_error(call, afs_io_error_cm_reply);
/* we'll need the file server record as that tells us which set of /* we'll need the file server record as that tells us which set of
* vnodes to operate upon */ * vnodes to operate upon */
...@@ -368,7 +368,7 @@ static int afs_deliver_cb_init_call_back_state3(struct afs_call *call) ...@@ -368,7 +368,7 @@ static int afs_deliver_cb_init_call_back_state3(struct afs_call *call)
} }
if (!afs_check_call_state(call, AFS_CALL_SV_REPLYING)) if (!afs_check_call_state(call, AFS_CALL_SV_REPLYING))
return -EIO; return afs_io_error(call, afs_io_error_cm_reply);
/* we'll need the file server record as that tells us which set of /* we'll need the file server record as that tells us which set of
* vnodes to operate upon */ * vnodes to operate upon */
...@@ -409,7 +409,7 @@ static int afs_deliver_cb_probe(struct afs_call *call) ...@@ -409,7 +409,7 @@ static int afs_deliver_cb_probe(struct afs_call *call)
return ret; return ret;
if (!afs_check_call_state(call, AFS_CALL_SV_REPLYING)) if (!afs_check_call_state(call, AFS_CALL_SV_REPLYING))
return -EIO; return afs_io_error(call, afs_io_error_cm_reply);
return afs_queue_call_work(call); return afs_queue_call_work(call);
} }
...@@ -490,7 +490,7 @@ static int afs_deliver_cb_probe_uuid(struct afs_call *call) ...@@ -490,7 +490,7 @@ static int afs_deliver_cb_probe_uuid(struct afs_call *call)
} }
if (!afs_check_call_state(call, AFS_CALL_SV_REPLYING)) if (!afs_check_call_state(call, AFS_CALL_SV_REPLYING))
return -EIO; return afs_io_error(call, afs_io_error_cm_reply);
return afs_queue_call_work(call); return afs_queue_call_work(call);
} }
...@@ -573,7 +573,7 @@ static int afs_deliver_cb_tell_me_about_yourself(struct afs_call *call) ...@@ -573,7 +573,7 @@ static int afs_deliver_cb_tell_me_about_yourself(struct afs_call *call)
return ret; return ret;
if (!afs_check_call_state(call, AFS_CALL_SV_REPLYING)) if (!afs_check_call_state(call, AFS_CALL_SV_REPLYING))
return -EIO; return afs_io_error(call, afs_io_error_cm_reply);
return afs_queue_call_work(call); return afs_queue_call_work(call);
} }
...@@ -138,6 +138,7 @@ static bool afs_dir_check_page(struct afs_vnode *dvnode, struct page *page, ...@@ -138,6 +138,7 @@ static bool afs_dir_check_page(struct afs_vnode *dvnode, struct page *page,
ntohs(dbuf->blocks[tmp].hdr.magic)); ntohs(dbuf->blocks[tmp].hdr.magic));
trace_afs_dir_check_failed(dvnode, off, i_size); trace_afs_dir_check_failed(dvnode, off, i_size);
kunmap(page); kunmap(page);
trace_afs_file_error(dvnode, -EIO, afs_file_error_dir_bad_magic);
goto error; goto error;
} }
...@@ -190,9 +191,11 @@ static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key) ...@@ -190,9 +191,11 @@ static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key)
retry: retry:
i_size = i_size_read(&dvnode->vfs_inode); i_size = i_size_read(&dvnode->vfs_inode);
if (i_size < 2048) if (i_size < 2048)
return ERR_PTR(-EIO); return ERR_PTR(afs_bad(dvnode, afs_file_error_dir_small));
if (i_size > 2048 * 1024) if (i_size > 2048 * 1024) {
trace_afs_file_error(dvnode, -EFBIG, afs_file_error_dir_big);
return ERR_PTR(-EFBIG); return ERR_PTR(-EFBIG);
}
_enter("%llu", i_size); _enter("%llu", i_size);
...@@ -315,7 +318,8 @@ static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key) ...@@ -315,7 +318,8 @@ static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key)
/* /*
* deal with one block in an AFS directory * deal with one block in an AFS directory
*/ */
static int afs_dir_iterate_block(struct dir_context *ctx, static int afs_dir_iterate_block(struct afs_vnode *dvnode,
struct dir_context *ctx,
union afs_xdr_dir_block *block, union afs_xdr_dir_block *block,
unsigned blkoff) unsigned blkoff)
{ {
...@@ -365,7 +369,7 @@ static int afs_dir_iterate_block(struct dir_context *ctx, ...@@ -365,7 +369,7 @@ static int afs_dir_iterate_block(struct dir_context *ctx,
" (len %u/%zu)", " (len %u/%zu)",
blkoff / sizeof(union afs_xdr_dir_block), blkoff / sizeof(union afs_xdr_dir_block),
offset, next, tmp, nlen); offset, next, tmp, nlen);
return -EIO; return afs_bad(dvnode, afs_file_error_dir_over_end);
} }
if (!(block->hdr.bitmap[next / 8] & if (!(block->hdr.bitmap[next / 8] &
(1 << (next % 8)))) { (1 << (next % 8)))) {
...@@ -373,7 +377,7 @@ static int afs_dir_iterate_block(struct dir_context *ctx, ...@@ -373,7 +377,7 @@ static int afs_dir_iterate_block(struct dir_context *ctx,
" %u unmarked extension (len %u/%zu)", " %u unmarked extension (len %u/%zu)",
blkoff / sizeof(union afs_xdr_dir_block), blkoff / sizeof(union afs_xdr_dir_block),
offset, next, tmp, nlen); offset, next, tmp, nlen);
return -EIO; return afs_bad(dvnode, afs_file_error_dir_unmarked_ext);
} }
_debug("ENT[%zu.%u]: ext %u/%zu", _debug("ENT[%zu.%u]: ext %u/%zu",
...@@ -442,7 +446,7 @@ static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx, ...@@ -442,7 +446,7 @@ static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx,
*/ */
page = req->pages[blkoff / PAGE_SIZE]; page = req->pages[blkoff / PAGE_SIZE];
if (!page) { if (!page) {
ret = -EIO; ret = afs_bad(dvnode, afs_file_error_dir_missing_page);
break; break;
} }
mark_page_accessed(page); mark_page_accessed(page);
...@@ -455,7 +459,7 @@ static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx, ...@@ -455,7 +459,7 @@ static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx,
do { do {
dblock = &dbuf->blocks[(blkoff % PAGE_SIZE) / dblock = &dbuf->blocks[(blkoff % PAGE_SIZE) /
sizeof(union afs_xdr_dir_block)]; sizeof(union afs_xdr_dir_block)];
ret = afs_dir_iterate_block(ctx, dblock, blkoff); ret = afs_dir_iterate_block(dvnode, ctx, dblock, blkoff);
if (ret != 1) { if (ret != 1) {
kunmap(page); kunmap(page);
goto out; goto out;
......
...@@ -1257,6 +1257,17 @@ static inline void afs_check_for_remote_deletion(struct afs_fs_cursor *fc, ...@@ -1257,6 +1257,17 @@ static inline void afs_check_for_remote_deletion(struct afs_fs_cursor *fc,
} }
} }
static inline int afs_io_error(struct afs_call *call, enum afs_io_error where)
{
trace_afs_io_error(call->debug_id, -EIO, where);
return -EIO;
}
static inline int afs_bad(struct afs_vnode *vnode, enum afs_file_error where)
{
trace_afs_file_error(vnode, -EIO, where);
return -EIO;
}
/*****************************************************************************/ /*****************************************************************************/
/* /*
......
...@@ -130,9 +130,10 @@ static struct vfsmount *afs_mntpt_do_automount(struct dentry *mntpt) ...@@ -130,9 +130,10 @@ static struct vfsmount *afs_mntpt_do_automount(struct dentry *mntpt)
goto error_no_page; goto error_no_page;
} }
ret = -EIO; if (PageError(page)) {
if (PageError(page)) ret = afs_bad(AFS_FS_I(d_inode(mntpt)), afs_file_error_mntpt);
goto error; goto error;
}
buf = kmap_atomic(page); buf = kmap_atomic(page);
memcpy(devname, buf, size); memcpy(devname, buf, size);
......
...@@ -915,7 +915,7 @@ int afs_extract_data(struct afs_call *call, bool want_more) ...@@ -915,7 +915,7 @@ int afs_extract_data(struct afs_call *call, bool want_more)
break; break;
case AFS_CALL_COMPLETE: case AFS_CALL_COMPLETE:
kdebug("prem complete %d", call->error); kdebug("prem complete %d", call->error);
return -EIO; return afs_io_error(call, afs_io_error_extract);
default: default:
break; break;
} }
......
...@@ -542,7 +542,7 @@ static bool afs_do_probe_fileserver(struct afs_fs_cursor *fc) ...@@ -542,7 +542,7 @@ static bool afs_do_probe_fileserver(struct afs_fs_cursor *fc)
case -ETIME: case -ETIME:
break; break;
default: default:
fc->ac.error = -EIO; fc->ac.error = afs_io_error(NULL, afs_io_error_fs_probe_fail);
goto error; goto error;
} }
} }
......
...@@ -533,6 +533,7 @@ static int afs_write_back_from_locked_page(struct address_space *mapping, ...@@ -533,6 +533,7 @@ static int afs_write_back_from_locked_page(struct address_space *mapping,
case -ENOENT: case -ENOENT:
case -ENOMEDIUM: case -ENOMEDIUM:
case -ENXIO: case -ENXIO:
trace_afs_file_error(vnode, ret, afs_file_error_writeback_fail);
afs_kill_pages(mapping, first, last); afs_kill_pages(mapping, first, last);
mapping_set_error(mapping, ret); mapping_set_error(mapping, ret);
break; break;
......
...@@ -103,6 +103,24 @@ enum afs_eproto_cause { ...@@ -103,6 +103,24 @@ enum afs_eproto_cause {
afs_eproto_yvl_vlendpt_type, afs_eproto_yvl_vlendpt_type,
}; };
enum afs_io_error {
afs_io_error_cm_reply,
afs_io_error_extract,
afs_io_error_fs_probe_fail,
afs_io_error_vl_lookup_fail,
};
enum afs_file_error {
afs_file_error_dir_bad_magic,
afs_file_error_dir_big,
afs_file_error_dir_missing_page,
afs_file_error_dir_over_end,
afs_file_error_dir_small,
afs_file_error_dir_unmarked_ext,
afs_file_error_mntpt,
afs_file_error_writeback_fail,
};
#endif /* end __AFS_DECLARE_TRACE_ENUMS_ONCE_ONLY */ #endif /* end __AFS_DECLARE_TRACE_ENUMS_ONCE_ONLY */
/* /*
...@@ -183,6 +201,21 @@ enum afs_eproto_cause { ...@@ -183,6 +201,21 @@ enum afs_eproto_cause {
EM(afs_eproto_yvl_vlendpt6_len, "YVL.VlEnd6Len") \ EM(afs_eproto_yvl_vlendpt6_len, "YVL.VlEnd6Len") \
E_(afs_eproto_yvl_vlendpt_type, "YVL.VlEndType") E_(afs_eproto_yvl_vlendpt_type, "YVL.VlEndType")
#define afs_io_errors \
EM(afs_io_error_cm_reply, "CM_REPLY") \
EM(afs_io_error_extract, "EXTRACT") \
EM(afs_io_error_fs_probe_fail, "FS_PROBE_FAIL") \
E_(afs_io_error_vl_lookup_fail, "VL_LOOKUP_FAIL")
#define afs_file_errors \
EM(afs_file_error_dir_bad_magic, "DIR_BAD_MAGIC") \
EM(afs_file_error_dir_big, "DIR_BIG") \
EM(afs_file_error_dir_missing_page, "DIR_MISSING_PAGE") \
EM(afs_file_error_dir_over_end, "DIR_ENT_OVER_END") \
EM(afs_file_error_dir_small, "DIR_SMALL") \
EM(afs_file_error_dir_unmarked_ext, "DIR_UNMARKED_EXT") \
EM(afs_file_error_mntpt, "MNTPT_READ_FAILED") \
E_(afs_file_error_writeback_fail, "WRITEBACK_FAILED")
/* /*
* Export enum symbols via userspace. * Export enum symbols via userspace.
...@@ -197,6 +230,9 @@ afs_fs_operations; ...@@ -197,6 +230,9 @@ afs_fs_operations;
afs_vl_operations; afs_vl_operations;
afs_edit_dir_ops; afs_edit_dir_ops;
afs_edit_dir_reasons; afs_edit_dir_reasons;
afs_eproto_causes;
afs_io_errors;
afs_file_errors;
/* /*
* Now redefine the EM() and E_() macros to map the enums to the strings that * Now redefine the EM() and E_() macros to map the enums to the strings that
...@@ -613,6 +649,51 @@ TRACE_EVENT(afs_protocol_error, ...@@ -613,6 +649,51 @@ TRACE_EVENT(afs_protocol_error,
__print_symbolic(__entry->cause, afs_eproto_causes)) __print_symbolic(__entry->cause, afs_eproto_causes))
); );
TRACE_EVENT(afs_io_error,
TP_PROTO(unsigned int call, int error, enum afs_io_error where),
TP_ARGS(call, error, where),
TP_STRUCT__entry(
__field(unsigned int, call )
__field(int, error )
__field(enum afs_io_error, where )
),
TP_fast_assign(
__entry->call = call;
__entry->error = error;
__entry->where = where;
),
TP_printk("c=%08x r=%d %s",
__entry->call, __entry->error,
__print_symbolic(__entry->where, afs_io_errors))
);
TRACE_EVENT(afs_file_error,
TP_PROTO(struct afs_vnode *vnode, int error, enum afs_file_error where),
TP_ARGS(vnode, error, where),
TP_STRUCT__entry(
__field_struct(struct afs_fid, fid )
__field(int, error )
__field(enum afs_file_error, where )
),
TP_fast_assign(
__entry->fid = vnode->fid;
__entry->error = error;
__entry->where = where;
),
TP_printk("%x:%x:%x r=%d %s",
__entry->fid.vid, __entry->fid.vnode, __entry->fid.unique,
__entry->error,
__print_symbolic(__entry->where, afs_file_errors))
);
TRACE_EVENT(afs_cm_no_server, TRACE_EVENT(afs_cm_no_server,
TP_PROTO(struct afs_call *call, struct sockaddr_rxrpc *srx), TP_PROTO(struct afs_call *call, struct sockaddr_rxrpc *srx),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment