1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
4 * Copyright 2001-2006 Ian Kent <raven@themaw.net>
7 #include <linux/sched/signal.h>
10 /* We make this a static variable rather than a part of the superblock; it
11 * is better if we don't reassign numbers easily even across filesystems
13 static autofs_wqt_t autofs_next_wait_queue
= 1;
15 void autofs_catatonic_mode(struct autofs_sb_info
*sbi
)
17 struct autofs_wait_queue
*wq
, *nwq
;
19 mutex_lock(&sbi
->wq_mutex
);
20 if (sbi
->flags
& AUTOFS_SBI_CATATONIC
) {
21 mutex_unlock(&sbi
->wq_mutex
);
25 pr_debug("entering catatonic mode\n");
27 sbi
->flags
|= AUTOFS_SBI_CATATONIC
;
29 sbi
->queues
= NULL
; /* Erase all wait queues */
32 wq
->status
= -ENOENT
; /* Magic is gone - report failure */
36 wake_up_interruptible(&wq
->queue
);
39 fput(sbi
->pipe
); /* Close the pipe */
42 mutex_unlock(&sbi
->wq_mutex
);
45 static int autofs_write(struct autofs_sb_info
*sbi
,
46 struct file
*file
, const void *addr
, int bytes
)
48 unsigned long sigpipe
, flags
;
49 const char *data
= (const char *)addr
;
52 sigpipe
= sigismember(¤t
->pending
.signal
, SIGPIPE
);
54 mutex_lock(&sbi
->pipe_mutex
);
56 wr
= __kernel_write(file
, data
, bytes
, &file
->f_pos
);
62 mutex_unlock(&sbi
->pipe_mutex
);
64 /* Keep the currently executing process from receiving a
65 * SIGPIPE unless it was already supposed to get one
67 if (wr
== -EPIPE
&& !sigpipe
) {
68 spin_lock_irqsave(¤t
->sighand
->siglock
, flags
);
69 sigdelset(¤t
->pending
.signal
, SIGPIPE
);
71 spin_unlock_irqrestore(¤t
->sighand
->siglock
, flags
);
74 /* if 'wr' returned 0 (impossible) we assume -EIO (safe) */
75 return bytes
== 0 ? 0 : wr
< 0 ? wr
: -EIO
;
78 static void autofs_notify_daemon(struct autofs_sb_info
*sbi
,
79 struct autofs_wait_queue
*wq
,
83 struct autofs_packet_hdr hdr
;
84 union autofs_packet_union v4_pkt
;
85 union autofs_v5_packet_union v5_pkt
;
87 struct file
*pipe
= NULL
;
91 pr_debug("wait id = 0x%08lx, name = %.*s, type=%d\n",
92 (unsigned long) wq
->wait_queue_token
,
93 wq
->name
.len
, wq
->name
.name
, type
);
95 memset(&pkt
, 0, sizeof(pkt
)); /* For security reasons */
97 pkt
.hdr
.proto_version
= sbi
->version
;
101 /* Kernel protocol v4 missing and expire packets */
102 case autofs_ptype_missing
:
104 struct autofs_packet_missing
*mp
= &pkt
.v4_pkt
.missing
;
108 mp
->wait_queue_token
= wq
->wait_queue_token
;
109 mp
->len
= wq
->name
.len
;
110 memcpy(mp
->name
, wq
->name
.name
, wq
->name
.len
);
111 mp
->name
[wq
->name
.len
] = '\0';
114 case autofs_ptype_expire_multi
:
116 struct autofs_packet_expire_multi
*ep
=
117 &pkt
.v4_pkt
.expire_multi
;
121 ep
->wait_queue_token
= wq
->wait_queue_token
;
122 ep
->len
= wq
->name
.len
;
123 memcpy(ep
->name
, wq
->name
.name
, wq
->name
.len
);
124 ep
->name
[wq
->name
.len
] = '\0';
128 * Kernel protocol v5 packet for handling indirect and direct
129 * mount missing and expire requests
131 case autofs_ptype_missing_indirect
:
132 case autofs_ptype_expire_indirect
:
133 case autofs_ptype_missing_direct
:
134 case autofs_ptype_expire_direct
:
136 struct autofs_v5_packet
*packet
= &pkt
.v5_pkt
.v5_packet
;
137 struct user_namespace
*user_ns
= sbi
->pipe
->f_cred
->user_ns
;
139 pktsz
= sizeof(*packet
);
141 packet
->wait_queue_token
= wq
->wait_queue_token
;
142 packet
->len
= wq
->name
.len
;
143 memcpy(packet
->name
, wq
->name
.name
, wq
->name
.len
);
144 packet
->name
[wq
->name
.len
] = '\0';
145 packet
->dev
= wq
->dev
;
146 packet
->ino
= wq
->ino
;
147 packet
->uid
= from_kuid_munged(user_ns
, wq
->uid
);
148 packet
->gid
= from_kgid_munged(user_ns
, wq
->gid
);
149 packet
->pid
= wq
->pid
;
150 packet
->tgid
= wq
->tgid
;
154 pr_warn("bad type %d!\n", type
);
155 mutex_unlock(&sbi
->wq_mutex
);
159 pipe
= get_file(sbi
->pipe
);
161 mutex_unlock(&sbi
->wq_mutex
);
163 switch (ret
= autofs_write(sbi
, pipe
, &pkt
, pktsz
)) {
168 /* Just fail this one */
169 autofs_wait_release(sbi
, wq
->wait_queue_token
, ret
);
172 autofs_catatonic_mode(sbi
);
178 static int autofs_getpath(struct autofs_sb_info
*sbi
,
179 struct dentry
*dentry
, char *name
)
181 struct dentry
*root
= sbi
->sb
->s_root
;
192 seq
= read_seqbegin(&rename_lock
);
194 spin_lock(&sbi
->fs_lock
);
195 for (tmp
= dentry
; tmp
!= root
; tmp
= tmp
->d_parent
)
196 len
+= tmp
->d_name
.len
+ 1;
198 if (!len
|| --len
> NAME_MAX
) {
199 spin_unlock(&sbi
->fs_lock
);
201 if (read_seqretry(&rename_lock
, seq
))
207 p
= buf
+ len
- dentry
->d_name
.len
;
208 strncpy(p
, dentry
->d_name
.name
, dentry
->d_name
.len
);
210 for (tmp
= dentry
->d_parent
; tmp
!= root
; tmp
= tmp
->d_parent
) {
212 p
-= tmp
->d_name
.len
;
213 strncpy(p
, tmp
->d_name
.name
, tmp
->d_name
.len
);
215 spin_unlock(&sbi
->fs_lock
);
217 if (read_seqretry(&rename_lock
, seq
))
223 static struct autofs_wait_queue
*
224 autofs_find_wait(struct autofs_sb_info
*sbi
, const struct qstr
*qstr
)
226 struct autofs_wait_queue
*wq
;
228 for (wq
= sbi
->queues
; wq
; wq
= wq
->next
) {
229 if (wq
->name
.hash
== qstr
->hash
&&
230 wq
->name
.len
== qstr
->len
&&
232 !memcmp(wq
->name
.name
, qstr
->name
, qstr
->len
))
239 * Check if we have a valid request.
241 * 1 if the request should continue.
242 * In this case we can return an autofs_wait_queue entry if one is
243 * found or NULL to idicate a new wait needs to be created.
244 * 0 or a negative errno if the request shouldn't continue.
246 static int validate_request(struct autofs_wait_queue
**wait
,
247 struct autofs_sb_info
*sbi
,
248 const struct qstr
*qstr
,
249 const struct path
*path
, enum autofs_notify notify
)
251 struct dentry
*dentry
= path
->dentry
;
252 struct autofs_wait_queue
*wq
;
253 struct autofs_info
*ino
;
255 if (sbi
->flags
& AUTOFS_SBI_CATATONIC
)
258 /* Wait in progress, continue; */
259 wq
= autofs_find_wait(sbi
, qstr
);
267 /* If we don't yet have any info this is a new request */
268 ino
= autofs_dentry_ino(dentry
);
273 * If we've been asked to wait on an existing expire (NFY_NONE)
274 * but there is no wait in the queue ...
276 if (notify
== NFY_NONE
) {
278 * Either we've betean the pending expire to post it's
279 * wait or it finished while we waited on the mutex.
280 * So we need to wait till either, the wait appears
281 * or the expire finishes.
284 while (ino
->flags
& AUTOFS_INF_EXPIRING
) {
285 mutex_unlock(&sbi
->wq_mutex
);
286 schedule_timeout_interruptible(HZ
/10);
287 if (mutex_lock_interruptible(&sbi
->wq_mutex
))
290 if (sbi
->flags
& AUTOFS_SBI_CATATONIC
)
293 wq
= autofs_find_wait(sbi
, qstr
);
301 * Not ideal but the status has already gone. Of the two
302 * cases where we wait on NFY_NONE neither depend on the
303 * return status of the wait.
309 * If we've been asked to trigger a mount and the request
310 * completed while we waited on the mutex ...
312 if (notify
== NFY_MOUNT
) {
313 struct dentry
*new = NULL
;
318 * If the dentry was successfully mounted while we slept
319 * on the wait queue mutex we can return success. If it
320 * isn't mounted (doesn't have submounts for the case of
321 * a multi-mount with no mount at it's base) we can
322 * continue on and create a new request.
324 if (!IS_ROOT(dentry
)) {
325 if (d_unhashed(dentry
) &&
326 d_really_is_positive(dentry
)) {
327 struct dentry
*parent
= dentry
->d_parent
;
329 new = d_lookup(parent
, &dentry
->d_name
);
334 this.mnt
= path
->mnt
;
335 this.dentry
= dentry
;
336 if (path_has_submounts(&this))
347 int autofs_wait(struct autofs_sb_info
*sbi
,
348 const struct path
*path
, enum autofs_notify notify
)
350 struct dentry
*dentry
= path
->dentry
;
351 struct autofs_wait_queue
*wq
;
354 int status
, ret
, type
;
358 /* In catatonic mode, we don't wait for nobody */
359 if (sbi
->flags
& AUTOFS_SBI_CATATONIC
)
363 * Try translating pids to the namespace of the daemon.
365 * Zero means failure: we are in an unrelated pid namespace.
367 pid
= task_pid_nr_ns(current
, ns_of_pid(sbi
->oz_pgrp
));
368 tgid
= task_tgid_nr_ns(current
, ns_of_pid(sbi
->oz_pgrp
));
369 if (pid
== 0 || tgid
== 0)
372 if (d_really_is_negative(dentry
)) {
374 * A wait for a negative dentry is invalid for certain
375 * cases. A direct or offset mount "always" has its mount
376 * point directory created and so the request dentry must
377 * be positive or the map key doesn't exist. The situation
378 * is very similar for indirect mounts except only dentrys
379 * in the root of the autofs file system may be negative.
381 if (autofs_type_trigger(sbi
->type
))
383 else if (!IS_ROOT(dentry
->d_parent
))
387 name
= kmalloc(NAME_MAX
+ 1, GFP_KERNEL
);
391 /* If this is a direct mount request create a dummy name */
392 if (IS_ROOT(dentry
) && autofs_type_trigger(sbi
->type
))
393 qstr
.len
= sprintf(name
, "%p", dentry
);
395 qstr
.len
= autofs_getpath(sbi
, dentry
, name
);
402 qstr
.hash
= full_name_hash(dentry
, name
, qstr
.len
);
404 if (mutex_lock_interruptible(&sbi
->wq_mutex
)) {
409 ret
= validate_request(&wq
, sbi
, &qstr
, path
, notify
);
412 mutex_unlock(&sbi
->wq_mutex
);
418 /* Create a new wait queue */
419 wq
= kmalloc(sizeof(struct autofs_wait_queue
), GFP_KERNEL
);
422 mutex_unlock(&sbi
->wq_mutex
);
426 wq
->wait_queue_token
= autofs_next_wait_queue
;
427 if (++autofs_next_wait_queue
== 0)
428 autofs_next_wait_queue
= 1;
429 wq
->next
= sbi
->queues
;
431 init_waitqueue_head(&wq
->queue
);
432 memcpy(&wq
->name
, &qstr
, sizeof(struct qstr
));
433 wq
->dev
= autofs_get_dev(sbi
);
434 wq
->ino
= autofs_get_ino(sbi
);
435 wq
->uid
= current_uid();
436 wq
->gid
= current_gid();
439 wq
->status
= -EINTR
; /* Status return if interrupted */
442 if (sbi
->version
< 5) {
443 if (notify
== NFY_MOUNT
)
444 type
= autofs_ptype_missing
;
446 type
= autofs_ptype_expire_multi
;
448 if (notify
== NFY_MOUNT
)
449 type
= autofs_type_trigger(sbi
->type
) ?
450 autofs_ptype_missing_direct
:
451 autofs_ptype_missing_indirect
;
453 type
= autofs_type_trigger(sbi
->type
) ?
454 autofs_ptype_expire_direct
:
455 autofs_ptype_expire_indirect
;
458 pr_debug("new wait id = 0x%08lx, name = %.*s, nfy=%d\n",
459 (unsigned long) wq
->wait_queue_token
, wq
->name
.len
,
460 wq
->name
.name
, notify
);
463 * autofs_notify_daemon() may block; it will unlock ->wq_mutex
465 autofs_notify_daemon(sbi
, wq
, type
);
468 pr_debug("existing wait id = 0x%08lx, name = %.*s, nfy=%d\n",
469 (unsigned long) wq
->wait_queue_token
, wq
->name
.len
,
470 wq
->name
.name
, notify
);
471 mutex_unlock(&sbi
->wq_mutex
);
476 * wq->name.name is NULL iff the lock is already released
477 * or the mount has been made catatonic.
479 wait_event_killable(wq
->queue
, wq
->name
.name
== NULL
);
483 * For direct and offset mounts we need to track the requester's
484 * uid and gid in the dentry info struct. This is so it can be
485 * supplied, on request, by the misc device ioctl interface.
486 * This is needed during daemon resatart when reconnecting
487 * to existing, active, autofs mounts. The uid and gid (and
488 * related string values) may be used for macro substitution
489 * in autofs mount maps.
492 struct autofs_info
*ino
;
493 struct dentry
*de
= NULL
;
495 /* direct mount or browsable map */
496 ino
= autofs_dentry_ino(dentry
);
498 /* If not lookup actual dentry used */
499 de
= d_lookup(dentry
->d_parent
, &dentry
->d_name
);
501 ino
= autofs_dentry_ino(de
);
504 /* Set mount requester */
506 spin_lock(&sbi
->fs_lock
);
509 spin_unlock(&sbi
->fs_lock
);
516 /* Are we the last process to need status? */
517 mutex_lock(&sbi
->wq_mutex
);
520 mutex_unlock(&sbi
->wq_mutex
);
526 int autofs_wait_release(struct autofs_sb_info
*sbi
,
527 autofs_wqt_t wait_queue_token
, int status
)
529 struct autofs_wait_queue
*wq
, **wql
;
531 mutex_lock(&sbi
->wq_mutex
);
532 for (wql
= &sbi
->queues
; (wq
= *wql
) != NULL
; wql
= &wq
->next
) {
533 if (wq
->wait_queue_token
== wait_queue_token
)
538 mutex_unlock(&sbi
->wq_mutex
);
542 *wql
= wq
->next
; /* Unlink from chain */
543 kfree(wq
->name
.name
);
544 wq
->name
.name
= NULL
; /* Do not wait on this queue */
549 mutex_unlock(&sbi
->wq_mutex
);