On Wed, 13 Apr 2005, Pavel Machek wrote:

> > This patch makes software_resume not a late_initcall but rather an
> > external subroutine similar to software_suspend, and calls it at the
> > beginning of mount_root (in init/do_mounts.c), just _after_ the initrd
> > (if any) and its driver have been seen....
> 
> But the patch is very dangerous. Unsuspecting users will see their
> systems resumed after unsafe initrd is ran. It is okay for you,
> through..
> 
> What you want to do si to audit your initrd, then add echo to
> /sys/power/resume at the end...

I think you expressed similar reservations earlier but I'm not sure if I 
understand what your issue is.  Are you saying (please let me know which if 
any of these threats are the ones that concern you):

1.  If the initrd mounted any filesystem read-write, or any journalled 
filesystem, and left it mounted, that would be bad.

2.  If the initrd started an ordinary process (or a kernel thread?) and 
left it running, that would be bad.  The ata_piix driver really does 
create a kernel thread, though I believe it exists only during actual data 
transfer.

3.  The initrd is copied into a ramdisc which is then mounted.  It's still 
mounted when software_resume is called (as the patch is arranged presently, 
or if the initrd does "echo resume > /sys/power/state"), and jimc isn't too 
sure where the ramdisc's memory goes at that point.


I was hoping to have a single point in the boot-up code where 
software_resume happened, rather than multiple places or, heaven forbid,
calling it repeatedly at various steps in the boot process.  I think we can 
justify some effort to avoid the situation where software_resume is called 
before initrd loading, and it sometimes refuses to load the image, and then 
is called again by the initrd.  

Suppose software_resume (after the initrd) does an audit, and refuses to 
load the image if there's a problem?  Or even better, if all it needs is to 
unmount filesystems, it should just do that and load the image.  Is this 
the right way to proceed?

James F. Carter          Voice 310 825 2897    FAX 310 206 6673
UCLA-Mathnet;  6115 MSA; 405 Hilgard Ave.; Los Angeles, CA, USA  90095-1555
Email: [EMAIL PROTECTED]    http://www.math.ucla.edu/~jimc (q.v. for PGP key)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to