aboutsummaryrefslogtreecommitdiffstats
path: root/fs/autofs4
diff options
context:
space:
mode:
authorIan Kent <raven@themaw.net>2008-07-24 00:30:20 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-07-24 13:47:32 -0400
commite64be33ccaceaca67c84237dff8805b861398eab (patch)
tree574c0eed196ac6115e0f042c1e4564d1b85474d2 /fs/autofs4
parentf4c7da02615bebcaf89f15a8d055922f515160b8 (diff)
autofs4: check kernel communication pipe is valid for write
It is possible for an autofs mount to become catatonic (and for the daemon communication pipe to become NULL) after a wait has been initiallized but before the request has been sent to the daemon. We need to check for this before sending the request packet. Signed-off-by: Ian Kent <raven@themaw.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/autofs4')
-rw-r--r--fs/autofs4/waitq.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/fs/autofs4/waitq.c b/fs/autofs4/waitq.c
index 1132cc2a0310..dd2914d7ad7f 100644
--- a/fs/autofs4/waitq.c
+++ b/fs/autofs4/waitq.c
@@ -99,6 +99,7 @@ static void autofs4_notify_daemon(struct autofs_sb_info *sbi,
99 union autofs_packet_union v4_pkt; 99 union autofs_packet_union v4_pkt;
100 union autofs_v5_packet_union v5_pkt; 100 union autofs_v5_packet_union v5_pkt;
101 } pkt; 101 } pkt;
102 struct file *pipe = NULL;
102 size_t pktsz; 103 size_t pktsz;
103 104
104 DPRINTK("wait id = 0x%08lx, name = %.*s, type=%d", 105 DPRINTK("wait id = 0x%08lx, name = %.*s, type=%d",
@@ -164,8 +165,19 @@ static void autofs4_notify_daemon(struct autofs_sb_info *sbi,
164 return; 165 return;
165 } 166 }
166 167
167 if (autofs4_write(sbi->pipe, &pkt, pktsz)) 168 /* Check if we have become catatonic */
168 autofs4_catatonic_mode(sbi); 169 mutex_lock(&sbi->wq_mutex);
170 if (!sbi->catatonic) {
171 pipe = sbi->pipe;
172 get_file(pipe);
173 }
174 mutex_unlock(&sbi->wq_mutex);
175
176 if (pipe) {
177 if (autofs4_write(pipe, &pkt, pktsz))
178 autofs4_catatonic_mode(sbi);
179 fput(pipe);
180 }
169} 181}
170 182
171static int autofs4_getpath(struct autofs_sb_info *sbi, 183static int autofs4_getpath(struct autofs_sb_info *sbi,