aboutsummaryrefslogtreecommitdiffstats
path: root/fs/coredump.c
AgeCommit message (Expand)AuthorFilesLines
2024-03-06iov_iter: get rid of 'copy_mc' flagLinus Torvalds1-3/+42
2023-12-28fs: Remove the now superfluous sentinel elements from ctl_table arrayJoel Granados1-1/+0
2023-06-26Merge tag 'v6.5/vfs.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/vf...Linus Torvalds1-1/+1
2023-06-01fork, vhost: Use CLONE_THREAD to fix freezer/ps regressionMike Christie1-1/+3
2023-05-17coredump: require O_WRONLY instead of O_RDWRVladimir Sementsov-Ogievskiy1-1/+1
2023-05-02mm: hwpoison: coredump: support recovery from dump_user_range()Kefeng Wang1-0/+1
2023-02-23Merge tag 'mm-stable-2023-02-20-13-37' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds1-4/+4
2023-02-20Merge tag 'for-6.3/block-2023-02-16' of git://git.kernel.dk/linuxLinus Torvalds1-5/+2
2023-02-20Merge tag 'fs.idmapped.v6.3' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-4/+4
2023-02-09coredump: convert to vma iteratorLiam R. Howlett1-4/+4
2023-02-03coredump: use bvec_set_page to initialize a bvecChristoph Hellwig1-5/+2
2023-01-19fs: port i_{g,u}id_into_vfs{g,u}id() to mnt_idmapChristian Brauner1-3/+1
2023-01-18fs: port vfs_*() helpers to struct mnt_idmapChristian Brauner1-2/+4
2023-01-10coredump: Move dump_emit_page() to kill unused warningGeert Uytterhoeven1-24/+24
2022-12-14Merge tag 'hardening-v6.2-rc1' of git://git.kernel.org/pub/scm/linux/kernel/g...Linus Torvalds1-2/+5
2022-12-12Merge tag 'fs.vfsuid.conversion.v6.2' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds1-2/+2
2022-12-12Merge tag 'pull-iov_iter' of git://git.kernel.org/pub/scm/linux/kernel/git/vi...Linus Torvalds1-1/+1
2022-12-12Merge tag 'pull-elfcore' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-1/+0
2022-11-25use less confusing names for iov_iter direction initializersAl Viro1-1/+1
2022-11-18core_pattern: add CPU specifierOleksandr Natalenko1-0/+5
2022-11-01coredump: Proactively round up to kmalloc bucket sizeKees Cook1-2/+5
2022-10-26fs: use type safe idmapping helpersChristian Brauner1-2/+2
2022-10-23kill coredump_params->regsAl Viro1-1/+0
2022-10-23kill signal_pt_regs()Al Viro1-1/+1
2022-10-10Merge tag 'mm-stable-2022-10-08' of git://git.kernel.org/pub/scm/linux/kernel...Linus Torvalds1-22/+12
2022-10-10Merge tag 'sched-core-2022-10-07' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds1-4/+3
2022-10-09Merge tag 'signal-for-v5.20' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-1/+1
2022-10-03[brown paperbag] fix coredump breakageAl Viro1-1/+2
2022-09-28[coredump] don't use __kernel_write() on kmap_local_page()Al Viro1-5/+33
2022-09-26coredump: remove vma linked list walkMatthew Wilcox (Oracle)1-22/+12
2022-09-07freezer,sched: Rewrite core freezer logicPeter Zijlstra1-3/+2
2022-09-07sched: Add TASK_ANY for wait_task_inactive()Peter Zijlstra1-1/+1
2022-07-20signal: Drop signals received after a fatal signal has been processedEric W. Biederman1-1/+1
2022-07-16fs: do not compare against ->llseekJason A. Donenfeld1-2/+2
2022-03-28Merge tag 'ptrace-cleanups-for-v5.18' of git://git.kernel.org/pub/scm/linux/k...Linus Torvalds1-1/+0
2022-03-10tracehook: Remove tracehook.hEric W. Biederman1-1/+0
2022-03-08coredump: Use the vma snapshot in fill_files_noteEric W. Biederman1-1/+21
2022-03-08coredump: Remove the WARN_ON in dump_vma_snapshotEric W. Biederman1-6/+0
2022-03-08coredump: Snapshot the vmas in do_coredumpEric W. Biederman1-18/+23
2022-03-01coredump: Also dump first pages of non-executable ELF librariesJann Horn1-5/+34
2022-01-22fs/coredump: move coredump sysctls into its own fileXiaoming Ni1-5/+61
2022-01-08signal: Remove the helper signal_group_exitEric W. Biederman1-2/+3
2022-01-08coredump: Stop setting signal->group_exit_taskEric W. Biederman1-2/+0
2022-01-08signal: Remove SIGNAL_GROUP_COREDUMPEric W. Biederman1-2/+1
2022-01-08signal: During coredumps set SIGNAL_GROUP_EXIT in zap_processEric W. Biederman1-3/+3
2021-10-08coredump: Limit coredumps to a single thread groupEric W. Biederman1-75/+9
2021-10-06coredump: Don't perform any cleanups before dumping coreEric W. Biederman1-4/+4
2021-10-06exit: Factor coredump_exit_mm out of exit_mmEric W. Biederman1-3/+3
2021-09-08coredump: fix memleak in dump_vma_snapshot()QiuXi1-1/+3
2021-09-08fs/coredump.c: log if a core dump is aborted due to changed file permissionsDavid Oberhollenzer1-2/+9
2021-07-03Merge branch 'work.namei' of git://git.kernel.org/pub/scm/linux/kernel/git/vi...Linus Torvalds1-2/+2
2021-06-10coredump: Limit what can interrupt coredumpsEric W. Biederman1-1/+1
2021-04-07switch file_open_root() to struct pathAl Viro1-2/+2
2021-03-08coredump: don't bother with do_truncate()Al Viro1-29/+43
2021-02-26fs/coredump: use kmap_local_page()Ira Weiny1-2/+2
2021-01-24open: handle idmapped mounts in do_truncate()Christian Brauner1-3/+7
2020-12-15Merge branch 'exec-for-v5.11' of git://git.kernel.org/pub/scm/linux/kernel/gi...Linus Torvalds1-4/+2
2020-12-10coredump: Document coredump code exclusively used by cell spufsEric W. Biederman1-0/+1
2020-12-10exec: Simplify unshare_filesEric W. Biederman1-4/+1
2020-12-06coredump: fix core_pattern parse errorMenglong Dong1-1/+2
2020-10-16binfmt_elf, binfmt_elf_fdpic: use a VMA list snapshotJann Horn1-1/+80
2020-10-16coredump: rework elf/elf_fdpic vma_dump_size() into common helperJann Horn1-0/+101
2020-10-16coredump: refactor page range dumping into common helperJann Horn1-0/+34
2020-10-16coredump: let dump_emit() bail out on short writesJann Horn1-11/+11
2020-08-12coredump: add %f for executable filenameLepton Wu1-4/+13
2020-06-09mmap locking API: convert mmap_sem commentsMichel Lespinasse1-2/+2
2020-06-09mmap locking API: use coccinelle to convert mmap_sem rwsem call sitesMichel Lespinasse1-2/+2
2020-04-28coredump: fix crash when umh is disabledLuis Chamberlain1-0/+8
2020-04-21coredump: fix null pointer dereference on coredumpSudip Mukherjee1-0/+2
2020-02-08pipe: use exclusive waits when reading or writingLinus Torvalds1-2/+2
2019-08-03coredump: split pipe command whitespace before expanding templatePaul Wise1-5/+39
2018-10-03signal: Distinguish between kernel_siginfo and siginfoEric W. Biederman1-1/+1
2017-11-17Merge branch 'misc.compat' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Linus Torvalds1-6/+1
2017-11-10coredump: call do_unlinkat directly instead of sys_unlinkChristoph Hellwig1-6/+1
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman1-0/+1
2017-09-13mm: treewide: remove GFP_TEMPORARY allocation flagMichal Hocko1-1/+1
2017-03-02sched/headers: Prepare for new header dependencies before moving code to <lin...Ingo Molnar1-0/+1
2017-03-02sched/headers: Prepare for new header dependencies before moving code to <lin...Ingo Molnar1-1/+1
2017-03-02sched/headers: Prepare for new header dependencies before moving code to <lin...Ingo Molnar1-0/+1
2017-01-14coredump: Ensure proper size of sparse core filesDave Kleikamp1-0/+18
2016-12-24Replace <asm/uaccess.h> with <linux/uaccess.h> globallyLinus Torvalds1-1/+1
2016-11-11coredump: fix unfreezable coredumping taskAndrey Ryabinin1-0/+3
2016-06-07coredump: fix dumping through pipesMateusz Guzik1-1/+3
2016-05-23coredump: make coredump_wait wait for mmap_sem for write killableMichal Hocko1-1/+3
2016-05-12coredump: only charge written data against RLIMIT_COREOmar Sandoval1-3/+2
2016-05-12coredump: get rid of coredump_params->writtenOmar Sandoval1-5/+3
2016-03-22fs/coredump: prevent fsuid=0 dumps into user-controlled directoriesJann Horn1-4/+26
2016-01-20fs/coredump: prevent "" / "." / ".." core path componentsJann Horn1-0/+20
2015-12-06coredump: Use 64bit time for unix time of coredumpArnd Bergmann1-3/+5
2015-11-06coredump: change zap_threads() and zap_process() to use for_each_thread()Oleg Nesterov1-14/+13
2015-11-06coredump: ensure all coredumping tasks have SIGNAL_GROUP_COREDUMPOleg Nesterov1-6/+6
2015-09-10fs: Don't dump core if the corefile would become world-readable.Jann Horn1-2/+6
2015-09-10fs: if a coredump already exists, unlink and recreate with O_EXCLJann Horn1-6/+32
2015-07-04Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-1/+1
2015-06-25coredump: add __printf attribute to cn_*printf functionsNicolas Iooss1-4/+7
2015-06-25coredump: use from_kuid/kgid when formatting corenameNicolas Iooss1-2/+6
2015-06-23vfs: add file_path() helperMiklos Szeredi1-1/+1
2015-04-11coredump: accept any write methodAl Viro1-1/+1
2015-02-20coredump: Fix typo in commentBastien Nocera1-1/+1
2014-10-14coredump: add %i/%I in core_pattern to report the tid of the crashed threadOleg Nesterov1-0/+8
2014-07-23coredump: fix the setting of PF_DUMPCORESilesh C V1-1/+1
2014-04-19coredump: fix va_list corruptionEric Dumazet1-1/+6
2014-01-23coredump: make __get_dumpable/get_dumpable inline, kill fs/coredump.hOleg Nesterov1-1/+0
2013-11-15dump_emit(): use __kernel_write(), not vfs_write()Al Viro1-1/+1
2013-11-15dump_align(): fix the dumb brainoAl Viro1-2/+2
2013-11-09constify do_coredump() argumentAl Viro1-1/+1
2013-11-09new helper: dump_align()Al Viro1-0/+9
2013-11-09dump_skip(): dump_seek() replacement taking coredump_paramsAl Viro1-29/+14
2013-11-09make dump_emit() use vfs_write() instead of banging at ->f_op->write directlyAl Viro1-5/+12
2013-11-09new helper: dump_emit()Al Viro1-0/+14
2013-10-24file->f_op is never NULL...Al Viro1-1/+1
2013-09-11coredump: add new %P variable in core_patternStéphane Graber1-0/+5
2013-07-03coredump: '% at the end' shouldn't bypass core_uses_pid logicOleg Nesterov1-5/+7
2013-07-03coredump: kill call_count, add core_name_sizeOleg Nesterov1-9/+10
2013-07-03coredump: kill cn_escape(), introduce cn_esc_printf()Oleg Nesterov1-23/+21
2013-07-03coredump: cn_vprintf() has no reason to call vsnprintf() twiceOleg Nesterov1-18/+12
2013-07-03coredump: introduce cn_vprintf()Oleg Nesterov1-7/+13
2013-07-03coredump: format_corename() can leak cn->corenameOleg Nesterov1-11/+7
2013-05-04do_coredump(): don't wait for thaw if coredump has already been interruptedAl Viro1-4/+5
2013-05-01Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/vir...Linus Torvalds1-3/+3
2013-04-30coredump: change wait_for_dump_helpers() to use wait_event_interruptible()Oleg Nesterov1-6/+9
2013-04-30coredump: factor out the setting of PF_DUMPCOREOleg Nesterov1-0/+1
2013-04-30coredump: introduce dump_interrupted()Oleg Nesterov1-3/+17
2013-04-30coredump: sanitize the setting of signal->group_exit_codeOleg Nesterov1-5/+6
2013-04-30coredump: ensure that SIGKILL always kills the dumping threadOleg Nesterov1-2/+8
2013-04-30coredump: only SIGKILL should interrupt the coredumping taskOleg Nesterov1-8/+5
2013-04-30usermodehelper: split remaining calls to call_usermodehelper_fns()Lucas De Marchi1-3/+9
2013-04-30coredump: remove trailling whitespaceLucas De Marchi1-3/+3
2013-04-09pipe: set file->private_data to ->i_pipeAl Viro1-3/+1
2013-04-09lift sb_start_write() out of ->write()Al Viro1-0/+2
2013-02-27coredump: remove redundant defines for dumpable statesKees Cook1-1/+1
2013-02-22new helper: file_inode(file)Al Viro1-2/+2
2012-11-29do_coredump(): get rid of pt_regs argumentAl Viro1-2/+2
2012-10-16fix a leak in replace_fd() usersAl Viro1-2/+3
2012-10-06coredump: pass siginfo_t* to do_coredump() and below, not merely signrDenys Vlasenko1-5/+5
2012-10-06coredump: add support for %d=__get_dumpable() in core nameOleg Nesterov1-3/+7
2012-10-06coredump: update coredump-related headersAlex Kelly1-0/+2
2012-10-02coredump: move core dump functionality into its own fileAlex Kelly1-0/+686