Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
294b0fa7
Commit
294b0fa7
authored
Feb 04, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
v2.4.0.12 -> v2.4.1
- Al Viro: core file hardlink attack avoidance fix
parent
c9b92268
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
12 deletions
+16
-12
Makefile
Makefile
+2
-3
arch/i386/boot/bootsect.S
arch/i386/boot/bootsect.S
+6
-7
arch/i386/defconfig
arch/i386/defconfig
+0
-1
arch/sh/kernel/traps.c
arch/sh/kernel/traps.c
+1
-0
fs/exec.c
fs/exec.c
+5
-1
include/linux/lvm.h
include/linux/lvm.h
+1
-0
net/ipv4/netfilter/ipt_MASQUERADE.c
net/ipv4/netfilter/ipt_MASQUERADE.c
+1
-0
No files found.
Makefile
View file @
294b0fa7
VERSION
=
2
PATCHLEVEL
=
4
SUBLEVEL
=
1
EXTRAVERSION
=
-pre12
EXTRAVERSION
=
KERNELRELEASE
=
$(VERSION)
.
$(PATCHLEVEL)
.
$(SUBLEVEL)$(EXTRAVERSION)
...
...
@@ -110,8 +110,7 @@ export ROOT_DEV = CURRENT
export
SVGA_MODE
=
-DSVGA_MODE
=
NORMAL_VGA
#
# if you want the RAM disk device, define this to be the
# size in blocks.
# if you want the RAM disk device, define this to be the size in blocks.
# This is i386 specific.
#
...
...
arch/i386/boot/bootsect.S
View file @
294b0fa7
...
...
@@ -25,10 +25,9 @@
*
loads
pretty
fast
by
getting
whole
tracks
at
a
time
whenever
possible
.
*/
#include <linux/config.h> /* for CONFIG_ROOT_RDONLY */
#include <asm/boot.h>
SETUPSECS
=
4
/*
default
nr
of
setup
-
sectors
*/
SETUPSEC
T
S
=
4
/*
default
nr
of
setup
-
sectors
*/
BOOTSEG
=
0x07C0
/*
original
address
of
boot
-
sector
*/
INITSEG
=
DEF_INITSEG
/*
we
move
boot
here
-
out
of
the
way
*/
SETUPSEG
=
DEF_SETUPSEG
/*
setup
starts
here
*/
...
...
@@ -46,8 +45,8 @@ SWAP_DEV = 0 /* SWAP_DEV is now written by "build" */
#define RAMDISK 0
#endif
#ifndef
CONFIG_
ROOT_RDONLY
#define
CONFIG_
ROOT_RDONLY 1
#ifndef ROOT_RDONLY
#define ROOT_RDONLY 1
#endif
.
code16
...
...
@@ -394,11 +393,11 @@ disksizes: .byte 36, 18, 15, 9
msg1
:
.
byte
13
,
10
.
ascii
"Loading"
#
XXX
:
This
is
a
*
very
*
snug
fit
.
#
XXX
:
This
is
a
fairly
snug
fit
.
.
org
497
setup_sects
:
.
byte
SETUPSECS
root_flags
:
.
word
CONFIG_
ROOT_RDONLY
setup_sects
:
.
byte
SETUPSEC
T
S
root_flags
:
.
word
ROOT_RDONLY
syssize
:
.
word
SYSSIZE
swap_dev
:
.
word
SWAP_DEV
ram_size
:
.
word
RAMDISK
...
...
arch/i386/defconfig
View file @
294b0fa7
...
...
@@ -133,7 +133,6 @@ CONFIG_BLK_DEV_FD=y
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID5 is not set
# CONFIG_BLK_DEV_LVM is not set
# CONFIG_LVM_PROC_FS is not set
#
# Networking options
...
...
arch/sh/kernel/traps.c
View file @
294b0fa7
...
...
@@ -11,6 +11,7 @@
* 'Traps.c' handles hardware traps and faults after we have saved some
* state in 'entry.S'.
*/
#include <linux/config.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/string.h>
...
...
fs/exec.c
View file @
294b0fa7
...
...
@@ -937,12 +937,14 @@ int do_coredump(long signr, struct pt_regs * regs)
#else
corename
[
4
]
=
'\0'
;
#endif
file
=
filp_open
(
corename
,
O_CREAT
|
2
|
O_
TRUNC
|
O_
NOFOLLOW
,
0600
);
file
=
filp_open
(
corename
,
O_CREAT
|
2
|
O_NOFOLLOW
,
0600
);
if
(
IS_ERR
(
file
))
goto
fail
;
inode
=
file
->
f_dentry
->
d_inode
;
if
(
inode
->
i_nlink
>
1
)
goto
close_fail
;
/* multiple links - don't dump */
if
(
d_unhashed
(
file
->
f_dentry
))
goto
close_fail
;
if
(
!
S_ISREG
(
inode
->
i_mode
))
goto
close_fail
;
...
...
@@ -950,6 +952,8 @@ int do_coredump(long signr, struct pt_regs * regs)
goto
close_fail
;
if
(
!
file
->
f_op
->
write
)
goto
close_fail
;
if
(
do_truncate
(
file
->
f_dentry
,
0
)
!=
0
)
goto
close_fail
;
if
(
!
binfmt
->
core_dump
(
signr
,
regs
,
file
))
goto
close_fail
;
unlock_kernel
();
...
...
include/linux/lvm.h
View file @
294b0fa7
...
...
@@ -69,6 +69,7 @@
#define _LVM_KERNEL_H_VERSION "LVM 0.9.1_beta2 (18/01/2001)"
#include <linux/config.h>
#include <linux/version.h>
/*
...
...
net/ipv4/netfilter/ipt_MASQUERADE.c
View file @
294b0fa7
/* Masquerade. Simple mapping which alters range to a local IP address
(depending on route). */
#include <linux/config.h>
#include <linux/types.h>
#include <linux/ip.h>
#include <linux/timer.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment