tracing: Fix panic when lseek() called on "trace" opened for writing

The file_ops struct for the "trace" special file defined llseek as seq_lseek().
However, if the file was opened for writing only, seq_open() was not called,
and the seek would dereference a null pointer, file->private_data.

This patch introduces a new wrapper for seq_lseek() which checks if the file
descriptor is opened for reading first. If not, it does nothing.

Cc: <stable@kernel.org>
Signed-off-by: Slava Pestov <slavapestov@google.com>
LKML-Reference: <1290640396-24179-1-git-send-email-slavapestov@google.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>

authored by Slava Pestov and committed by Steven Rostedt 364829b1 60e67737

+9 -1
+9 -1
kernel/trace/trace.c
··· 2339 2339 return count; 2340 2340 } 2341 2341 2342 + static loff_t tracing_seek(struct file *file, loff_t offset, int origin) 2343 + { 2344 + if (file->f_mode & FMODE_READ) 2345 + return seq_lseek(file, offset, origin); 2346 + else 2347 + return 0; 2348 + } 2349 + 2342 2350 static const struct file_operations tracing_fops = { 2343 2351 .open = tracing_open, 2344 2352 .read = seq_read, 2345 2353 .write = tracing_write_stub, 2346 - .llseek = seq_lseek, 2354 + .llseek = tracing_seek, 2347 2355 .release = tracing_release, 2348 2356 }; 2349 2357