OpenBSD CVS

CVS log for src/sys/kern/exec_script.c


[BACK] Up to [local] / src / sys / kern

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.48 / (download) - annotate - [select for diffs], Mon Jul 15 04:11:03 2019 UTC (4 years, 10 months ago) by visa
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, HEAD
Changes since 1.47: +2 -2 lines
Diff to previous 1.47 (colored)

Do not relock fdp in fdrelease(). This prevents unnecessary locking
in the common case.

OK mpi@

Revision 1.47 / (download) - annotate - [select for diffs], Mon Jun 18 09:15:05 2018 UTC (5 years, 11 months ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.46: +8 -5 lines
Diff to previous 1.46 (colored)

Put file descriptors on shared data structures when they are completely
setup, take 3.

LARVAL fd still exist, but they are no longer marked with a flag and no
longer reachable via `fd_ofiles[]' or the global linked list.  This allows
us to simplifies a lot code grabbing new references to fds.

All of this is now possible because dup2(2) refuses to clone LARVAL fds.

Note that the `fdplock' could now be release in all open(2)-like syscalls,
just like it is done in accept(2).

With inputs from Mathieu Masson, visa@, guenther@ and art@

Previous version ok bluhm@, ok visa@, sthen@

Revision 1.46 / (download) - annotate - [select for diffs], Tue Jun 5 09:29:05 2018 UTC (6 years ago) by mpi
Branch: MAIN
Changes since 1.45: +5 -8 lines
Diff to previous 1.45 (colored)

Revert introduction of fdinsert(), a sanitify check triggers when
closing a LARVAL file.

Found the hardway by sthen@.

Revision 1.45 / (download) - annotate - [select for diffs], Sat Jun 2 10:27:43 2018 UTC (6 years ago) by mpi
Branch: MAIN
Changes since 1.44: +8 -5 lines
Diff to previous 1.44 (colored)

Put file descriptors on shared data structures when they are completely
setup.

LARVAL fd still exist, but they are no longer marked with a flag and no
longer reachable via `fd_ofiles[]'.  This allows us to simplifies a lot
code grabbing new references to fds.

All of this is now possible because dup2(2) refuses to clone LARVAL fds.

Note that the `fdplock' could now be release in all open(2)-like syscalls,
just like it is done in accept(2).

With inputs from Mathieu -, visa@, guenther@ and art@

ok visa@, bluhm@

Revision 1.44 / (download) - annotate - [select for diffs], Wed May 2 02:24:56 2018 UTC (6 years, 1 month ago) by visa
Branch: MAIN
Changes since 1.43: +2 -2 lines
Diff to previous 1.43 (colored)

Remove proc from the parameters of vn_lock(). The parameter is
unnecessary because curproc always does the locking.

OK mpi@

Revision 1.43 / (download) - annotate - [select for diffs], Sat Apr 28 03:13:04 2018 UTC (6 years, 1 month ago) by visa
Branch: MAIN
Changes since 1.42: +2 -2 lines
Diff to previous 1.42 (colored)

Clean up the parameters of VOP_LOCK() and VOP_UNLOCK(). It is always
curproc that does the locking or unlocking, so the proc parameter
is pointless and can be dropped.

OK mpi@, deraadt@

Revision 1.42 / (download) - annotate - [select for diffs], Tue Jan 2 06:38:45 2018 UTC (6 years, 5 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3
Changes since 1.41: +2 -1 lines
Diff to previous 1.41 (colored)

Stop assuming <sys/file.h> will pull in fcntl.h when _KERNEL is defined.

ok millert@ sthen@

Revision 1.41 / (download) - annotate - [select for diffs], Mon Jan 1 08:55:43 2018 UTC (6 years, 5 months ago) by florian
Branch: MAIN
Changes since 1.40: +8 -6 lines
Diff to previous 1.40 (colored)

We are either allocating 2 or three array members. Unroll while loop
to be able to call free(9) with sizes.

off-by-one pointed out by guenther
OK visa

Revision 1.40 / (download) - annotate - [select for diffs], Sat Feb 11 19:51:06 2017 UTC (7 years, 3 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

Add a flags argument to falloc() that lets it optionally set the
close-on-exec flag on the newly allocated fd.  Make falloc()'s
return arguments non-optional: assert that they're not NULL.

ok mpi@ millert@

Revision 1.39 / (download) - annotate - [select for diffs], Mon Apr 25 20:00:33 2016 UTC (8 years, 1 month ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.38: +3 -22 lines
Diff to previous 1.38 (colored)

boom goes the dynamite

Revision 1.38 / (download) - annotate - [select for diffs], Sat Mar 19 12:04:15 2016 UTC (8 years, 2 months ago) by natano
Branch: MAIN
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored)

Remove the unused flags argument from VOP_UNLOCK().

torture tested on amd64, i386 and macppc
ok beck mpi stefan
"the change looks right" deraadt

Revision 1.37 / (download) - annotate - [select for diffs], Thu Dec 31 18:55:33 2015 UTC (8 years, 5 months ago) by mmcc
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.36: +9 -8 lines
Diff to previous 1.36 (colored)

NULL-terminate a pointer array to prevent an invalid free, and simplify
the associated pointer incrementing logic.

Reported by Maxim Pugachev. Looks good to tedu@

Revision 1.36 / (download) - annotate - [select for diffs], Thu Sep 10 18:10:35 2015 UTC (8 years, 9 months ago) by deraadt
Branch: MAIN
Changes since 1.35: +2 -2 lines
Diff to previous 1.35 (colored)

sizes for free(); ok sthen

Revision 1.35 / (download) - annotate - [select for diffs], Sat Mar 14 03:38:50 2015 UTC (9 years, 3 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.34: +1 -2 lines
Diff to previous 1.34 (colored)

Remove some includes include-what-you-use claims don't
have any direct symbols used.  Tested for indirect use by compiling
amd64/i386/sparc64 kernels.

ok tedu@ deraadt@

Revision 1.34 / (download) - annotate - [select for diffs], Tue Dec 16 18:30:03 2014 UTC (9 years, 5 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.33: +2 -1 lines
Diff to previous 1.33 (colored)

primary change: move uvm_vnode out of vnode, keeping only a pointer.
objective: vnode.h doesn't include uvm_extern.h anymore.
followup changes: include uvm_extern.h or lock.h where necessary.
ok and help from deraadt

Revision 1.33 / (download) - annotate - [select for diffs], Wed Nov 19 21:19:15 2014 UTC (9 years, 6 months ago) by tedu
Branch: MAIN
Changes since 1.32: +2 -5 lines
Diff to previous 1.32 (colored)

panic should be reserved for unrecoverable errors, not things we merely
hope don't happen. also, always check for errors. ok deraadt

Revision 1.32 / (download) - annotate - [select for diffs], Tue Nov 18 05:23:14 2014 UTC (9 years, 6 months ago) by tedu
Branch: MAIN
Changes since 1.31: +3 -27 lines
Diff to previous 1.31 (colored)

unifdef SETUIDSCRIPT and FDSCRIPT. we always use them. ok deraadt

Revision 1.31 / (download) - annotate - [select for diffs], Sun Jul 13 23:59:58 2014 UTC (9 years, 11 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.30: +2 -2 lines
Diff to previous 1.30 (colored)

use mallocarray for multiplied value checking

Revision 1.30 / (download) - annotate - [select for diffs], Sat Jul 12 18:43:32 2014 UTC (9 years, 11 months ago) by tedu
Branch: MAIN
Changes since 1.29: +3 -3 lines
Diff to previous 1.29 (colored)

add a size argument to free. will be used soon, but for now default to 0.
after discussions with beck deraadt kettenis.

Revision 1.29 / (download) - annotate - [select for diffs], Tue Jul 8 17:19:25 2014 UTC (9 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.28: +1 -2 lines
Diff to previous 1.28 (colored)

decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h
don't need to be married.
ok guenther miod beck jsing kettenis

Revision 1.28 / (download) - annotate - [select for diffs], Sun Apr 22 05:43:14 2012 UTC (12 years, 1 month ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2
Changes since 1.27: +2 -2 lines
Diff to previous 1.27 (colored)

Add struct proc * argument to FRELE() and FILE_SET_MATURE() in
anticipation of further changes to closef().  No binary change.

ok krw@ miod@ deraadt@

Revision 1.27 / (download) - annotate - [select for diffs], Wed Feb 15 04:26:27 2012 UTC (12 years, 3 months ago) by guenther
Branch: MAIN
Changes since 1.26: +7 -2 lines
Diff to previous 1.26 (colored)

Hold struct filedesc's fd_lock when writing to the fd_ofiles, fd_ofileflags,
or fd_{lo,hi}maps members, or when doing a read for a write.  Fixes hangs
when an rthreaded processes sleeps while copying the fd table for fork()
and catches another thread with the lock.

ok jsing@ tedu@

Revision 1.26 / (download) - annotate - [select for diffs], Thu Jul 7 23:45:00 2011 UTC (12 years, 11 months ago) by matthew
Branch: MAIN
CVS Tags: OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0
Changes since 1.25: +2 -1 lines
Diff to previous 1.25 (colored)

Add new syscall entries to support the openat(2) family of functions
added in POSIX Issue 7: openat(), mknodat(), mkfifoat(), linkat(),
symlinkat(), unlinkat(), faccessat(), fstatat(), readlinkat(),
fchmodat(), fchownat(), utimensat(), renameat(), and mkdirat().

This diff mostly just refactors the existing sys_foo() logic into a
common dofooat() function that can then be called by both sys_foo()
and sys_fooat().  Some of the new system calls support new flags to
control their behavior, and proper support for these will be added in
subsequent diffs.

Incorporating suggestions from thib@, guenther@, and tedu@.

ok tedu@, thib@, deraadt@, guenther@

Revision 1.25 / (download) - annotate - [select for diffs], Mon Oct 29 14:12:19 2007 UTC (16 years, 7 months ago) by chl
Branch: MAIN
CVS Tags: OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.24: +3 -3 lines
Diff to previous 1.24 (colored)

MALLOC/FREE -> malloc/free
replace an hard coded value with M_WAITOK

ok krw@

Revision 1.24 / (download) - annotate - [select for diffs], Tue Nov 14 18:00:27 2006 UTC (17 years, 7 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.23: +5 -5 lines
Diff to previous 1.23 (colored)

grammar, spelling, and style fixes from bret lambert;
kern_descrip.c change ok deraadt

Revision 1.23 / (download) - annotate - [select for diffs], Sat Nov 12 04:31:24 2005 UTC (18 years, 7 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0, OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.22: +2 -4 lines
Diff to previous 1.22 (colored)

ansi. No binary change.

Revision 1.22 / (download) - annotate - [select for diffs], Mon Aug 1 07:02:39 2005 UTC (18 years, 10 months ago) by art
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8
Changes since 1.21: +12 -11 lines
Diff to previous 1.21 (colored)

 - We shouldn't allocate MAXPATHLEN from the stack.
 - Don't copy the pathbuf into kernel space unless we're systracing.
deraadt@ ok

Revision 1.21 / (download) - annotate - [select for diffs], Wed Jul 7 07:31:40 2004 UTC (19 years, 11 months ago) by marius
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.20: +16 -4 lines
Diff to previous 1.20 (colored)

fix an issue when scripts are exec'd under systrace where
the argv[0] would be normalized, and hence break scripts
that depend on how they were called.

this fixes an issue in the ports builds.

ok provos@ deraadt@; lots of testing during hackathon sturm@ naddy@

Revision 1.20 / (download) - annotate - [select for diffs], Wed Jun 23 05:16:35 2004 UTC (19 years, 11 months ago) by marius
Branch: MAIN
Changes since 1.19: +13 -2 lines
Diff to previous 1.19 (colored)

a few fixes to systrace

- add an exec message so that whenever a set-uid/gid process
  exec's a new image which we may control, the exec does not
  go by unnoticed.

- take special care to check for P_SUGIDEXEC as well as
  P_SUGID, corresponding to the same changes that were made in
  the ptrace code a while ago

ok niels@, sturm@; thanks to naddy for testing

Revision 1.10.2.7 / (download) - annotate - [select for diffs], Sat Jun 5 23:13:01 2004 UTC (20 years ago) by niklas
Branch: SMP
Changes since 1.10.2.6: +4 -3 lines
Diff to previous 1.10.2.6 (colored) to branchpoint 1.10 (colored) next main 1.11 (colored)

Merge with the trunk

Revision 1.19 / (download) - annotate - [select for diffs], Fri May 14 04:00:33 2004 UTC (20 years, 1 month ago) by tedu
Branch: MAIN
CVS Tags: SMP_SYNC_B, SMP_SYNC_A
Changes since 1.18: +4 -3 lines
Diff to previous 1.18 (colored)

use pool for namei pathbuf.  testing ok millert@ tdeval@

Revision 1.15.2.2 / (download) - annotate - [select for diffs], Mon May 19 22:31:09 2003 UTC (21 years ago) by tedu
Branch: UBC
Changes since 1.15.2.1: +4 -4 lines
Diff to previous 1.15.2.1 (colored) to branchpoint 1.15 (colored) next main 1.16 (colored)

sync

Revision 1.10.2.6 / (download) - annotate - [select for diffs], Tue May 13 19:21:28 2003 UTC (21 years, 1 month ago) by ho
Branch: SMP
Changes since 1.10.2.5: +4 -4 lines
Diff to previous 1.10.2.5 (colored) to branchpoint 1.10 (colored)

Sync the SMP branch to -current. This includes moving to ELF.

Revision 1.18 / (download) - annotate - [select for diffs], Sat May 3 21:14:59 2003 UTC (21 years, 1 month ago) by deraadt
Branch: MAIN
CVS Tags: UBC_SYNC_A, OPENBSD_3_5_BASE, OPENBSD_3_5, OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.17: +4 -4 lines
Diff to previous 1.17 (colored)

string fixes; tedu ok

Revision 1.10.2.5 / (download) - annotate - [select for diffs], Fri Mar 28 00:41:26 2003 UTC (21 years, 2 months ago) by niklas
Branch: SMP
Changes since 1.10.2.4: +19 -17 lines
Diff to previous 1.10.2.4 (colored) to branchpoint 1.10 (colored)

Sync the SMP branch with 3.3

Revision 1.15.2.1 / (download) - annotate - [select for diffs], Tue Oct 29 00:36:44 2002 UTC (21 years, 7 months ago) by art
Branch: UBC
Changes since 1.15: +20 -18 lines
Diff to previous 1.15 (colored)

sync to -current

Revision 1.17 / (download) - annotate - [select for diffs], Wed Sep 18 22:01:15 2002 UTC (21 years, 8 months ago) by art
Branch: MAIN
CVS Tags: UBC_SYNC_B, OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.16: +8 -7 lines
Diff to previous 1.16 (colored)

We can jump to the fail: label before shellargp is initialized.
Make sure that we don't free random memory when that happens.
From <j at pureftpd.org>
deraadt@ ok

Revision 1.16 / (download) - annotate - [select for diffs], Thu Aug 22 22:04:42 2002 UTC (21 years, 9 months ago) by art
Branch: MAIN
Changes since 1.15: +13 -12 lines
Diff to previous 1.15 (colored)

Change the vnode locking in exec to not keep the vnode locked almost all
the time.

This could lead to problems when a process wants to do an exec on the same
vnode it's being run from and needs to copy in arguments from an uncached
page in the data segment. When that happens uvm detects a vnode deadlock
and returns an error causing execve() return EFAULT.

This fixes the regress test in regress/sys/kern/exec_self

Also, initialize scriptvp early in exec_script because it could be
used uninitialized in a failure case.

Revision 1.10.2.4 / (download) - annotate - [select for diffs], Tue Nov 13 23:04:23 2001 UTC (22 years, 7 months ago) by niklas
Branch: SMP
Changes since 1.10.2.3: +2 -2 lines
Diff to previous 1.10.2.3 (colored) to branchpoint 1.10 (colored)

merge in -current

Revision 1.15 / (download) - annotate - [select for diffs], Tue Nov 6 19:53:20 2001 UTC (22 years, 7 months ago) by miod
Branch: MAIN
CVS Tags: UBC_BASE, OPENBSD_3_1_BASE, OPENBSD_3_1
Branch point for: UBC
Changes since 1.14: +2 -2 lines
Diff to previous 1.14 (colored)

Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.
(Look ma, I might have broken the tree)

Revision 1.10.2.3 / (download) - annotate - [select for diffs], Wed Oct 31 03:26:28 2001 UTC (22 years, 7 months ago) by nate
Branch: SMP
Changes since 1.10.2.2: +2 -1 lines
Diff to previous 1.10.2.2 (colored) to branchpoint 1.10 (colored)

Sync the SMP branch to something just after 3.0

Revision 1.14 / (download) - annotate - [select for diffs], Fri Oct 26 12:03:27 2001 UTC (22 years, 7 months ago) by art
Branch: MAIN
Changes since 1.13: +2 -1 lines
Diff to previous 1.13 (colored)

 - every new fd created by falloc() is marked as larval and should not be used
   any anyone. Every caller of falloc matures the fd when it's usable.
 - Since every lookup in the fd table must now check this flag and all of
   them do the same thing, move all the necessary checks into a function -
   fd_getfile.

Revision 1.10.2.2 / (download) - annotate - [select for diffs], Wed Jul 4 10:48:13 2001 UTC (22 years, 11 months ago) by niklas
Branch: SMP
Changes since 1.10.2.1: +13 -13 lines
Diff to previous 1.10.2.1 (colored) to branchpoint 1.10 (colored)

Merge in -current from two days ago in the SMP branch.
As usual with merges, they do not indicate progress, so do not hold
your breath for working SMP, and do not mail me and ask about the
state of it.  It has not changed.  There is work ongoing, but very, very
slowly.  The commit is done in parts as to not lock up the tree in too
big chunks at a time.

Revision 1.13 / (download) - annotate - [select for diffs], Fri Jun 22 14:14:08 2001 UTC (22 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0
Changes since 1.12: +12 -12 lines
Diff to previous 1.12 (colored)

KNF

Revision 1.10.2.1 / (download) - annotate - [select for diffs], Mon May 14 22:32:39 2001 UTC (23 years, 1 month ago) by niklas
Branch: SMP
Changes since 1.10: +5 -5 lines
Diff to previous 1.10 (colored)

merge in approximately 2.9 into SMP branch

Revision 1.12 / (download) - annotate - [select for diffs], Mon May 14 13:31:52 2001 UTC (23 years, 1 month ago) by art
Branch: MAIN
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored)

ifdef FOO inside an ifdef FOO feels like overkill.

Revision 1.11 / (download) - annotate - [select for diffs], Tue Sep 26 14:01:38 2000 UTC (23 years, 8 months ago) by art
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9, OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.10: +5 -5 lines
Diff to previous 1.10 (colored)

Don't use MALLOC/FREE on variable sized allocations.

Revision 1.10 / (download) - annotate - [select for diffs], Tue Feb 1 04:03:14 2000 UTC (24 years, 4 months ago) by assar
Branch: MAIN
CVS Tags: SMP_BASE, OPENBSD_2_7_BASE, OPENBSD_2_7
Branch point for: SMP
Changes since 1.9: +1 -2 lines
Diff to previous 1.9 (colored)

remove superflous declaration of vnops, it's now in <sys/file.h>

Revision 1.9 / (download) - annotate - [select for diffs], Mon Oct 18 17:07:11 1999 UTC (24 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: kame_19991208, OPENBSD_2_6_BASE, OPENBSD_2_6
Changes since 1.8: +5 -5 lines
Diff to previous 1.8 (colored)

force FDSCRIPTS after include files are pulled in

Revision 1.8 / (download) - annotate - [select for diffs], Mon Jan 11 05:12:22 1999 UTC (25 years, 5 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_5_BASE, OPENBSD_2_5
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored)

panic prints a newline for you, don't do it in the panic string

Revision 1.7 / (download) - annotate - [select for diffs], Thu Nov 6 05:58:13 1997 UTC (26 years, 7 months ago) by csapuntz
Branch: MAIN
CVS Tags: OPENBSD_2_4_BASE, OPENBSD_2_4, OPENBSD_2_3_BASE, OPENBSD_2_3
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored)

Updates for VFS Lite 2 + soft update.

Revision 1.6 / (download) - annotate - [select for diffs], Mon Oct 6 20:19:48 1997 UTC (26 years, 8 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_2_BASE, OPENBSD_2_2
Changes since 1.5: +1 -1 lines
Diff to previous 1.5 (colored)

back out vfs lite2 till after 2.2

Revision 1.5 / (download) - annotate - [select for diffs], Mon Oct 6 15:12:10 1997 UTC (26 years, 8 months ago) by csapuntz
Branch: MAIN
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

VFS Lite2 Changes

Revision 1.4 / (download) - annotate - [select for diffs], Sun Oct 20 15:30:07 1996 UTC (27 years, 7 months ago) by dm
Branch: MAIN
CVS Tags: OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored)

Make it build with -Wparentheses.

Revision 1.3 / (download) - annotate - [select for diffs], Wed Jun 12 07:35:06 1996 UTC (28 years ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored)

warning: variable might be used uninitialized -- sucks

Revision 1.2 / (download) - annotate - [select for diffs], Sun Mar 3 17:19:38 1996 UTC (28 years, 3 months ago) by niklas
Branch: MAIN
Changes since 1.1: +5 -2 lines
Diff to previous 1.1 (colored)

From NetBSD: 960217 merge

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Wed Oct 18 08:52:43 1995 UTC (28 years, 8 months ago) by deraadt
CVS Tags: netbsd_1_1
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

initial import of NetBSD tree

Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 18 08:52:43 1995 UTC (28 years, 8 months ago) by deraadt
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.