2 * Copyright (c) 2003 Kip Macy
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $DragonFly: src/sys/kern/kern_checkpoint.c,v 1.19 2007/06/29 23:40:00 dillon Exp $
29 #include <sys/types.h>
30 #include <sys/param.h>
32 #include <sys/module.h>
33 #include <sys/sysent.h>
34 #include <sys/kernel.h>
35 #include <sys/systm.h>
36 #include <sys/nlookup.h>
39 /* only on dragonfly */
40 #include <sys/file2.h>
41 #include <sys/fcntl.h>
42 #include <sys/signal.h>
43 #include <vm/vm_param.h>
45 #include <sys/imgact_elf.h>
46 #include <sys/procfs.h>
50 #include <vm/vm_map.h>
51 #include <vm/vm_extern.h>
53 #include <sys/sysent.h>
54 #include <sys/sysproto.h>
55 #include <sys/resource.h>
56 #include <sys/resourcevar.h>
57 #include <sys/malloc.h>
60 #include <sys/namei.h>
61 #include <sys/vnode.h>
62 #include <machine/limits.h>
63 #include <machine/frame.h>
64 #include <sys/signalvar.h>
65 #include <sys/syslog.h>
66 #include <sys/sysctl.h>
67 #include <machine/sigframe.h>
69 #include <sys/unistd.h>
71 #include <sys/kern_syscall.h>
72 #include <sys/checkpoint.h>
73 #include <sys/mount.h>
77 static int elf_loadphdrs(struct file
*fp
, Elf_Phdr
*phdr
, int numsegs
);
78 static int elf_getnotes(struct lwp
*lp
, struct file
*fp
, size_t notesz
);
79 static int elf_demarshalnotes(void *src
, prpsinfo_t
*psinfo
,
80 prstatus_t
*status
, prfpregset_t
*fpregset
, int nthreads
);
81 static int elf_loadnotes(struct lwp
*, prpsinfo_t
*, prstatus_t
*,
83 static int elf_getsigs(struct lwp
*lp
, struct file
*fp
);
84 static int elf_getfiles(struct proc
*p
, struct file
*fp
);
85 static int elf_gettextvp(struct proc
*p
, struct file
*fp
);
86 static char *ckpt_expand_name(const char *name
, uid_t uid
, pid_t pid
);
88 static int ckptgroup
= 0; /* wheel only, -1 for any group */
89 SYSCTL_INT(_kern
, OID_AUTO
, ckptgroup
, CTLFLAG_RW
, &ckptgroup
, 0, "");
91 /* ref count to see how many processes that are being checkpointed */
92 static int chptinuse
= 0;
96 read_check(struct file
*fp
, void *buf
, size_t nbyte
)
101 PRINTF(("reading %d bytes\n", nbyte
));
102 error
= fp_read(fp
, buf
, nbyte
, &nread
, 1, UIO_SYSSPACE
);
104 PRINTF(("read failed - %d", error
));
105 } else if (nread
!= nbyte
) {
106 PRINTF(("wanted to read %d - read %d\n", nbyte
, nread
));
113 elf_gethdr(struct file
*fp
, Elf_Ehdr
*ehdr
)
115 size_t nbyte
= sizeof(Elf_Ehdr
);
118 if ((error
= read_check(fp
, ehdr
, nbyte
)) != 0)
120 if (!(ehdr
->e_ehsize
== sizeof(Elf_Ehdr
))) {
121 PRINTF(("wrong elf header size: %d\n"
122 "expected size : %d\n",
123 ehdr
->e_ehsize
, sizeof(Elf_Ehdr
)));
126 if (!(ehdr
->e_phentsize
== sizeof(Elf_Phdr
))) {
127 PRINTF(("wrong program header size: %d\n"
128 "expected size : %d\n",
129 ehdr
->e_phentsize
, sizeof(Elf_Phdr
)));
133 if (!(ehdr
->e_ident
[EI_MAG0
] == ELFMAG0
&&
134 ehdr
->e_ident
[EI_MAG1
] == ELFMAG1
&&
135 ehdr
->e_ident
[EI_MAG2
] == ELFMAG2
&&
136 ehdr
->e_ident
[EI_MAG3
] == ELFMAG3
&&
137 ehdr
->e_ident
[EI_CLASS
] == ELF_CLASS
&&
138 ehdr
->e_ident
[EI_DATA
] == ELF_DATA
&&
139 ehdr
->e_ident
[EI_VERSION
] == EV_CURRENT
&&
140 ehdr
->e_ident
[EI_OSABI
] == ELFOSABI_FREEBSD
&&
141 ehdr
->e_ident
[EI_ABIVERSION
] == 0)) {
142 PRINTF(("bad elf header\n there are %d segments\n",
147 PRINTF(("Elf header size: %d\n", ehdr
->e_ehsize
));
148 PRINTF(("Program header size: %d\n", ehdr
->e_phentsize
));
149 PRINTF(("Number of Program headers: %d\n", ehdr
->e_phnum
));
155 elf_getphdrs(struct file
*fp
, Elf_Phdr
*phdr
, size_t nbyte
)
159 int nheaders
= nbyte
/sizeof(Elf_Phdr
);
161 PRINTF(("reading phdrs section\n"));
162 if ((error
= read_check(fp
, phdr
, nbyte
)) != 0)
164 PRINTF(("headers section:\n"));
165 for (i
= 0; i
< nheaders
; i
++) {
166 PRINTF(("entry type: %d\n", phdr
[i
].p_type
));
167 PRINTF(("file offset: %d\n", phdr
[i
].p_offset
));
168 PRINTF(("virt address: %p\n", (uint32_t *)phdr
[i
].p_vaddr
));
169 PRINTF(("file size: %d\n", phdr
[i
].p_filesz
));
170 PRINTF(("memory size: %d\n", phdr
[i
].p_memsz
));
179 elf_getnotes(struct lwp
*lp
, struct file
*fp
, size_t notesz
)
186 prfpregset_t
*fpregset
;
188 nthreads
= (notesz
- sizeof(prpsinfo_t
))/(sizeof(prstatus_t
) +
189 sizeof(prfpregset_t
));
190 PRINTF(("reading notes header nthreads=%d\n", nthreads
));
191 if (nthreads
<= 0 || nthreads
> CKPT_MAXTHREADS
)
194 psinfo
= kmalloc(sizeof(prpsinfo_t
), M_TEMP
, M_ZERO
| M_WAITOK
);
195 status
= kmalloc(nthreads
*sizeof(prstatus_t
), M_TEMP
, M_WAITOK
);
196 fpregset
= kmalloc(nthreads
*sizeof(prfpregset_t
), M_TEMP
, M_WAITOK
);
197 note
= kmalloc(notesz
, M_TEMP
, M_WAITOK
);
200 PRINTF(("reading notes section\n"));
201 if ((error
= read_check(fp
, note
, notesz
)) != 0)
203 error
= elf_demarshalnotes(note
, psinfo
, status
, fpregset
, nthreads
);
206 /* fetch register state from notes */
207 error
= elf_loadnotes(lp
, psinfo
, status
, fpregset
);
210 kfree(psinfo
, M_TEMP
);
212 kfree(status
, M_TEMP
);
214 kfree(fpregset
, M_TEMP
);
221 ckpt_thaw_proc(struct lwp
*lp
, struct file
*fp
)
223 struct proc
*p
= lp
->lwp_proc
;
224 Elf_Phdr
*phdr
= NULL
;
225 Elf_Ehdr
*ehdr
= NULL
;
231 ehdr
= kmalloc(sizeof(Elf_Ehdr
), M_TEMP
, M_ZERO
| M_WAITOK
);
233 if ((error
= elf_gethdr(fp
, ehdr
)) != 0)
235 nbyte
= sizeof(Elf_Phdr
) * ehdr
->e_phnum
;
236 phdr
= kmalloc(nbyte
, M_TEMP
, M_WAITOK
);
238 /* fetch description of program writable mappings */
239 if ((error
= elf_getphdrs(fp
, phdr
, nbyte
)) != 0)
242 /* fetch notes section containing register state */
243 if ((error
= elf_getnotes(lp
, fp
, phdr
->p_filesz
)) != 0)
246 /* fetch program text vnodes */
247 if ((error
= elf_gettextvp(p
, fp
)) != 0)
250 /* fetch signal disposition */
251 if ((error
= elf_getsigs(lp
, fp
)) != 0) {
252 kprintf("failure in recovering signals\n");
256 /* fetch open files */
257 if ((error
= elf_getfiles(p
, fp
)) != 0)
260 /* handle mappings last in case we are reading from a socket */
261 error
= elf_loadphdrs(fp
, phdr
, ehdr
->e_phnum
);
264 * Set the textvp to the checkpoint file and mark the vnode so
265 * a future checkpointing of this checkpoint-restored program
266 * will copy out the contents of the mappings rather then trying
267 * to record the vnode info related to the checkpoint file, which
268 * is likely going to be destroyed when the program is re-checkpointed.
270 if (error
== 0 && fp
->f_data
&& fp
->f_type
== DTYPE_VNODE
) {
273 p
->p_textvp
= (struct vnode
*)fp
->f_data
;
274 p
->p_textvp
->v_flag
|= VCKPT
;
287 elf_loadnotes(struct lwp
*lp
, prpsinfo_t
*psinfo
, prstatus_t
*status
,
288 prfpregset_t
*fpregset
)
290 struct proc
*p
= lp
->lwp_proc
;
293 /* validate status and psinfo */
295 if (status
->pr_version
!= PRSTATUS_VERSION
||
296 status
->pr_statussz
!= sizeof(prstatus_t
) ||
297 status
->pr_gregsetsz
!= sizeof(gregset_t
) ||
298 status
->pr_fpregsetsz
!= sizeof(fpregset_t
) ||
299 psinfo
->pr_version
!= PRPSINFO_VERSION
||
300 psinfo
->pr_psinfosz
!= sizeof(prpsinfo_t
)) {
301 PRINTF(("status check failed\n"));
305 /* XXX lwp handle more than one lwp*/
306 if ((error
= set_regs(lp
, &status
->pr_reg
)) != 0)
308 error
= set_fpregs(lp
, fpregset
);
309 strlcpy(p
->p_comm
, psinfo
->pr_fname
, sizeof(p
->p_comm
));
310 /* XXX psinfo->pr_psargs not yet implemented */
317 elf_getnote(void *src
, size_t *off
, const char *name
, unsigned int type
,
318 void **desc
, size_t descsz
)
328 bcopy((char *)src
+ *off
, ¬e
, sizeof note
);
330 PRINTF(("at offset: %d expected note of type: %d - got: %d\n",
331 *off
, type
, note
.n_type
));
333 if (type
!= note
.n_type
) {
338 if (strncmp(name
, (char *) src
+ *off
, note
.n_namesz
) != 0) {
342 *off
+= roundup2(note
.n_namesz
, sizeof(Elf_Size
));
343 if (note
.n_descsz
!= descsz
) {
349 bcopy((char *)src
+ *off
, *desc
, note
.n_descsz
);
350 *off
+= roundup2(note
.n_descsz
, sizeof(Elf_Size
));
358 elf_demarshalnotes(void *src
, prpsinfo_t
*psinfo
, prstatus_t
*status
,
359 prfpregset_t
*fpregset
, int nthreads
)
366 error
= elf_getnote(src
, &off
, "FreeBSD", NT_PRSTATUS
,
367 (void **)&status
, sizeof(prstatus_t
));
370 error
= elf_getnote(src
, &off
, "FreeBSD", NT_FPREGSET
,
371 (void **)&fpregset
, sizeof(prfpregset_t
));
374 error
= elf_getnote(src
, &off
, "FreeBSD", NT_PRPSINFO
,
375 (void **)&psinfo
, sizeof(prpsinfo_t
));
380 * The remaining portion needs to be an integer multiple
381 * of prstatus_t and prfpregset_t
383 for (i
= 0 ; i
< nthreads
- 1; i
++) {
384 status
++; fpregset
++;
385 error
= elf_getnote(src
, &off
, "FreeBSD", NT_PRSTATUS
,
386 (void **)&status
, sizeof (prstatus_t
));
389 error
= elf_getnote(src
, &off
, "FreeBSD", NT_FPREGSET
,
390 (void **)&fpregset
, sizeof(prfpregset_t
));
402 mmap_phdr(struct file
*fp
, Elf_Phdr
*phdr
)
412 pos
= phdr
->p_offset
;
413 len
= phdr
->p_filesz
;
414 addr
= (void *)phdr
->p_vaddr
;
415 flags
= MAP_FIXED
| MAP_NOSYNC
| MAP_PRIVATE
;
417 if (phdr
->p_flags
& PF_R
)
419 if (phdr
->p_flags
& PF_W
)
421 if (phdr
->p_flags
& PF_X
)
423 if ((error
= fp_mmap(addr
, len
, prot
, flags
, fp
, pos
, &addr
)) != 0) {
424 PRINTF(("mmap failed: %d\n", error
); );
426 PRINTF(("map @%08x-%08x fileoff %08x-%08x\n", (int)addr
,
427 (int)((char *)addr
+ len
), (int)pos
, (int)(pos
+ len
)));
433 * Load memory mapped segments. The segments are backed by the checkpoint
437 elf_loadphdrs(struct file
*fp
, Elf_Phdr
*phdr
, int numsegs
)
443 for (i
= 1; i
< numsegs
; i
++) {
444 if ((error
= mmap_phdr(fp
, &phdr
[i
])) != 0)
452 elf_getsigs(struct lwp
*lp
, struct file
*fp
)
454 struct proc
*p
= lp
->lwp_proc
;
456 struct ckpt_siginfo
*csi
;
459 csi
= kmalloc(sizeof(struct ckpt_siginfo
), M_TEMP
, M_ZERO
| M_WAITOK
);
460 if ((error
= read_check(fp
, csi
, sizeof(struct ckpt_siginfo
))) != 0)
463 if (csi
->csi_ckptpisz
!= sizeof(struct ckpt_siginfo
)) {
468 bcopy(&csi
->csi_sigacts
, p
->p_sigacts
, sizeof(p
->p_sigacts
));
469 bcopy(&csi
->csi_itimerval
, &p
->p_realtimer
, sizeof(struct itimerval
));
470 SIG_CANTMASK(csi
->csi_sigmask
);
471 /* XXX lwp handle more than one lwp */
472 bcopy(&csi
->csi_sigmask
, &lp
->lwp_sigmask
, sizeof(sigset_t
));
473 p
->p_sigparent
= csi
->csi_sigparent
;
482 * Returns a locked, refd vnode
485 ckpt_fhtovp(fhandle_t
*fh
, struct vnode
**vpp
)
491 mp
= vfs_getvfs(&fh
->fh_fsid
);
495 PRINTF(("failed to get mount - ESTALE\n"));
499 error
= VFS_FHTOVP(mp
, &fh
->fh_fid
, vpp
);
501 PRINTF(("failed with: %d\n", error
));
511 mmap_vp(struct vn_hdr
*vnh
)
519 phdr
= &vnh
->vnh_phdr
;
521 if ((error
= ckpt_fhtovp(&vnh
->vnh_fh
, &vp
)) != 0)
524 * XXX O_RDONLY -> or O_RDWR if file is PROT_WRITE, MAP_SHARED
526 if ((error
= fp_vpopen(vp
, O_RDONLY
, &fp
)) != 0) {
530 error
= mmap_phdr(fp
, phdr
);
538 elf_gettextvp(struct proc
*p
, struct file
*fp
)
543 struct ckpt_vminfo vminfo
;
544 struct vn_hdr
*vnh
= NULL
;
547 if ((error
= read_check(fp
, &vminfo
, sizeof(vminfo
))) != 0)
549 if (vminfo
.cvm_dsize
< 0 ||
550 vminfo
.cvm_dsize
> p
->p_rlimit
[RLIMIT_DATA
].rlim_cur
||
551 vminfo
.cvm_tsize
< 0 ||
552 (u_quad_t
)vminfo
.cvm_tsize
> maxtsiz
||
553 vminfo
.cvm_daddr
>= (caddr_t
)VM_MAX_USER_ADDRESS
||
554 vminfo
.cvm_taddr
>= (caddr_t
)VM_MAX_USER_ADDRESS
560 vmspace_exec(p
, NULL
);
561 p
->p_vmspace
->vm_daddr
= vminfo
.cvm_daddr
;
562 p
->p_vmspace
->vm_dsize
= vminfo
.cvm_dsize
;
563 p
->p_vmspace
->vm_taddr
= vminfo
.cvm_taddr
;
564 p
->p_vmspace
->vm_tsize
= vminfo
.cvm_tsize
;
565 if ((error
= read_check(fp
, &vpcount
, sizeof(int))) != 0)
567 vnh
= kmalloc(sizeof(struct vn_hdr
) * vpcount
, M_TEMP
, M_WAITOK
);
568 if ((error
= read_check(fp
, vnh
, sizeof(struct vn_hdr
)*vpcount
)) != 0)
570 for (i
= 0; i
< vpcount
; i
++) {
571 if ((error
= mmap_vp(&vnh
[i
])) != 0)
586 elf_getfiles(struct proc
*p
, struct file
*fp
)
592 struct ckpt_filehdr filehdr
;
593 struct ckpt_fileinfo
*cfi_base
= NULL
;
599 if ((error
= read_check(fp
, &filehdr
, sizeof(filehdr
))) != 0)
601 filecount
= filehdr
.cfh_nfiles
;
602 cfi_base
= kmalloc(filecount
*sizeof(struct ckpt_fileinfo
), M_TEMP
, M_WAITOK
);
603 error
= read_check(fp
, cfi_base
, filecount
*sizeof(struct ckpt_fileinfo
));
608 * Close all file descriptors >= 3. These descriptors are from the
609 * checkpt(1) program itself and should not be retained.
611 * XXX we need a flag so a checkpoint restore can opt to supply the
612 * descriptors, or the non-regular-file descripors.
614 for (i
= 3; i
< p
->p_fd
->fd_nfiles
; ++i
)
620 for (i
= 0; i
< filecount
; i
++) {
621 struct ckpt_fileinfo
*cfi
= &cfi_base
[i
];
623 * Ignore placeholder entries where cfi_index is less then
624 * zero. This will occur if the elf core dump code thinks
625 * it can save a vnode but winds up not being able to.
627 if (cfi
->cfi_index
< 0)
631 * Restore a saved file descriptor. If CKFIF_ISCKPTFD is
632 * set the descriptor represents the checkpoint file itself,
633 * probably due to the user calling sys_checkpoint(). We
634 * want to use the fp being used to restore the checkpoint
635 * instead of trying to restore the original filehandle.
637 if (cfi
->cfi_ckflags
& CKFIF_ISCKPTFD
) {
642 error
= ckpt_fhtovp(&cfi
->cfi_fh
, &vp
);
644 error
= fp_vpopen(vp
, OFLAGS(cfi
->cfi_flags
),
652 tempfp
->f_offset
= cfi
->cfi_offset
;
655 * If overwriting a descriptor close the old descriptor. This
656 * only occurs if the saved core saved descriptors that we
657 * have not already closed.
659 if (cfi
->cfi_index
< p
->p_fd
->fd_nfiles
&&
660 (ofp
= p
->p_fd
->fd_files
[cfi
->cfi_index
].fp
) != NULL
) {
661 kern_close(cfi
->cfi_index
);
665 * Allocate the descriptor we want.
667 if (fdalloc(p
, cfi
->cfi_index
, &fd
) != 0) {
668 PRINTF(("can't currently restore fd: %d\n",
673 KKASSERT(fd
== cfi
->cfi_index
);
674 fsetfd(p
, tempfp
, fd
);
677 PRINTF(("restoring %d\n", cfi
->cfi_index
));
682 kfree(cfi_base
, M_TEMP
);
688 ckpt_freeze_proc(struct lwp
*lp
, struct file
*fp
)
690 struct proc
*p
= lp
->lwp_proc
;
694 PRINTF(("calling generic_elf_coredump\n"));
695 limit
= p
->p_rlimit
[RLIMIT_CORE
].rlim_cur
;
697 error
= generic_elf_coredump(lp
, SIGCKPT
, fp
, limit
);
705 sys_sys_checkpoint(struct sys_checkpoint_args
*uap
)
708 struct lwp
*lp
= curthread
->td_lwp
;
709 struct proc
*p
= curthread
->td_proc
;
713 * Only certain groups (to reduce our security exposure). -1
716 if (ckptgroup
>= 0 && groupmember(ckptgroup
, p
->p_ucred
) == 0)
720 * For now we can only checkpoint the current process
722 if (uap
->pid
!= -1 && uap
->pid
!= p
->p_pid
)
728 if (uap
->fd
== -1 && uap
->pid
== (pid_t
)-1)
729 error
= checkpoint_signal_handler(lp
);
730 else if ((fp
= holdfp(p
->p_fd
, uap
->fd
, FWRITE
)) == NULL
)
733 error
= ckpt_freeze_proc(lp
, fp
);
740 if ((fp
= holdfp(p
->p_fd
, uap
->fd
, FREAD
)) == NULL
)
742 uap
->sysmsg_result
= uap
->retval
;
743 error
= ckpt_thaw_proc(lp
, fp
);
754 checkpoint_signal_handler(struct lwp
*lp
)
756 struct proc
*p
= lp
->lwp_proc
;
759 struct nlookupdata nd
;
765 * Being able to checkpoint an suid or sgid program is not a good
768 if (sugid_coredump
== 0 && (p
->p_flag
& P_SUGID
)) {
773 buf
= ckpt_expand_name(p
->p_comm
, p
->p_ucred
->cr_uid
, p
->p_pid
);
779 log(LOG_INFO
, "pid %d (%s), uid %d: checkpointing to %s\n",
781 (p
->p_ucred
? p
->p_ucred
->cr_uid
: -1),
784 PRINTF(("ckpt handler called, using '%s'\n", buf
));
787 * Use the same safety flags that the coredump code uses. Remove
788 * any previous checkpoint file before writing out the new one in
789 * case we are re-checkpointing a program that had been checkpt
790 * restored. Otherwise we will corrupt the program space (which is
791 * made up of mmap()ings of the previous checkpoint file) while we
792 * write out the new one.
794 error
= nlookup_init(&nd
, buf
, UIO_SYSSPACE
, 0);
796 error
= kern_unlink(&nd
);
798 error
= fp_open(buf
, O_WRONLY
|O_CREAT
|O_TRUNC
|O_NOFOLLOW
, 0600, &fp
);
800 error
= ckpt_freeze_proc(lp
, fp
);
803 kprintf("checkpoint failed with open - error: %d\n", error
);
810 static char ckptfilename
[MAXPATHLEN
] = {"%N.ckpt"};
811 SYSCTL_STRING(_kern
, OID_AUTO
, ckptfile
, CTLFLAG_RW
, ckptfilename
,
812 sizeof(ckptfilename
), "process checkpoint name format string");
815 * expand_name(name, uid, pid)
816 * Expand the name described in corefilename, using name, uid, and pid.
817 * corefilename is a kprintf-like string, with three format specifiers:
818 * %N name of process ("name")
819 * %P process id (pid)
821 * For example, "%N.core" is the default; they can be disabled completely
822 * by using "/dev/null", or all core files can be stored in "/cores/%U/%N-%P".
823 * This is controlled by the sysctl variable kern.corefile (see above).
825 * -- taken from the coredump code
830 ckpt_expand_name(const char *name
, uid_t uid
, pid_t pid
)
834 char buf
[11]; /* Buffer for pid/uid -- max 4B */
838 char *format
= ckptfilename
;
841 temp
= kmalloc(MAXPATHLEN
+ 1, M_TEMP
, M_NOWAIT
);
844 namelen
= strlen(name
);
846 if (ckptfilename
[0] != '/') {
847 if ((bp
= kern_getcwd(temp
, MAXPATHLEN
- 1, &error
)) == NULL
) {
852 bcopy(bp
, temp
, n
+ 1); /* normalize location of the path */
856 for (i
= 0; n
< MAXPATHLEN
&& format
[i
]; i
++) {
859 case '%': /* Format character */
865 case 'N': /* process name */
866 if ((n
+ namelen
) > MAXPATHLEN
) {
867 log(LOG_ERR
, "pid %d (%s), uid (%u): Path `%s%s' is too long\n",
868 pid
, name
, uid
, temp
, name
);
872 memcpy(temp
+n
, name
, namelen
);
875 case 'P': /* process id */
876 l
= ksprintf(buf
, "%u", pid
);
877 if ((n
+ l
) > MAXPATHLEN
) {
878 log(LOG_ERR
, "pid %d (%s), uid (%u): Path `%s%s' is too long\n",
879 pid
, name
, uid
, temp
, name
);
883 memcpy(temp
+n
, buf
, l
);
886 case 'U': /* user id */
887 l
= ksprintf(buf
, "%u", uid
);
888 if ((n
+ l
) > MAXPATHLEN
) {
889 log(LOG_ERR
, "pid %d (%s), uid (%u): Path `%s%s' is too long\n",
890 pid
, name
, uid
, temp
, name
);
894 memcpy(temp
+n
, buf
, l
);
898 log(LOG_ERR
, "Unknown format character %c in `%s'\n", format
[i
], format
);
902 temp
[n
++] = format
[i
];