linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] depricate ZMAGIC binaries
@ 1999-05-23 18:41 Eric W. Biederman
  1999-05-24 14:55 ` Andrea Arcangeli
  0 siblings, 1 reply; 2+ messages in thread
From: Eric W. Biederman @ 1999-05-23 18:41 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-mm, linux-kernel

The follow patch reads ZMAGIC binaries into anonymous memory,
instead of mapping them at weird offsets in the page cache.

It now also issues a warning when they are run.
This removes the need to support ZMAGIC binaries in the page cache.

Eric

diff -uNrX linux-ignore-files linux-2.3.3.eb1/fs/binfmt_aout.c linux-2.3.3.eb2/fs/binfmt_aout.c
--- linux-2.3.3.eb1/fs/binfmt_aout.c	Sun May 16 21:55:18 1999
+++ linux-2.3.3.eb2/fs/binfmt_aout.c	Tue May 18 01:12:47 1999
@@ -413,7 +413,14 @@
 			return fd;
 		file = fcheck(fd);
 
-		if (!file->f_op || !file->f_op->mmap) {
+		if ((fd_offset & ~PAGE_MASK) != 0) {
+			printk(KERN_WARNING 
+			       "fd_offset is not page aligned. Please convert program: %s\n",
+			       file->f_dentry->d_name.name
+			       );
+		}
+
+		if (!file->f_op || !file->f_op->mmap || ((fd_offset & ~PAGE_MASK) != 0)) {
 			sys_close(fd);
 			do_mmap(NULL, 0, ex.a_text+ex.a_data,
 				PROT_READ|PROT_WRITE|PROT_EXEC,
@@ -534,6 +541,24 @@
 
 	start_addr =  ex.a_entry & 0xfffff000;
 
+	if ((N_TXTOFF(ex) & ~PAGE_MASK) != 0) {
+		printk(KERN_WARNING 
+		       "N_TXTOFF is not page aligned. Please convert library: %s\n",
+		       file->f_dentry->d_name.name
+		       );
+		
+		do_mmap(NULL, start_addr & PAGE_MASK, ex.a_text + ex.a_data + ex.a_bss,
+			PROT_READ | PROT_WRITE | PROT_EXEC,
+			MAP_FIXED| MAP_PRIVATE, 0);
+		
+		read_exec(file->f_dentry, N_TXTOFF(ex),
+			  (char *)start_addr, ex.a_text + ex.a_data, 0);
+		flush_icache_range((unsigned long) start_addr,
+				   (unsigned long) start_addr + ex.a_text + ex.a_data);
+
+		retval = 0;
+		goto out_putf;
+	}
 	/* Now use mmap to map the library into memory. */
 	error = do_mmap(file, start_addr, ex.a_text + ex.a_data,
 			PROT_READ | PROT_WRITE | PROT_EXEC,
diff -uNrX linux-ignore-files linux-2.3.3.eb1/mm/filemap.c linux-2.3.3.eb2/mm/filemap.c
--- linux-2.3.3.eb1/mm/filemap.c	Tue May 18 01:11:52 1999
+++ linux-2.3.3.eb2/mm/filemap.c	Tue May 18 01:12:47 1999
@@ -1319,8 +1319,7 @@
 			return -EINVAL;
 	} else {
 		ops = &file_private_mmap;
-		if (inode->i_op && inode->i_op->bmap &&
-		    (vma->vm_offset & (inode->i_sb->s_blocksize - 1)))
+		if (vma->vm_offset & (PAGE_SIZE -1))
 			return -EINVAL;
 	}
 	if (!inode->i_sb || !S_ISREG(inode->i_mode))
--
To unsubscribe, send a message with 'unsubscribe linux-mm my@address'
in the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://humbolt.geo.uu.nl/Linux-MM/

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] depricate ZMAGIC binaries
  1999-05-23 18:41 [PATCH] depricate ZMAGIC binaries Eric W. Biederman
@ 1999-05-24 14:55 ` Andrea Arcangeli
  0 siblings, 0 replies; 2+ messages in thread
From: Andrea Arcangeli @ 1999-05-24 14:55 UTC (permalink / raw)
  To: Eric W. Biederman; +Cc: Linus Torvalds, linux-mm, linux-kernel

On 23 May 1999, Eric W. Biederman wrote:

>diff -uNrX linux-ignore-files linux-2.3.3.eb1/mm/filemap.c linux-2.3.3.eb2/mm/filemap.c
>--- linux-2.3.3.eb1/mm/filemap.c	Tue May 18 01:11:52 1999
>+++ linux-2.3.3.eb2/mm/filemap.c	Tue May 18 01:12:47 1999
>@@ -1319,8 +1319,7 @@
> 			return -EINVAL;
> 	} else {
> 		ops = &file_private_mmap;
>-		if (inode->i_op && inode->i_op->bmap &&
>-		    (vma->vm_offset & (inode->i_sb->s_blocksize - 1)))
>+		if (vma->vm_offset & (PAGE_SIZE -1))
> 			return -EINVAL;

Minor issue: since now there is no difference in the align check between
VM_SHARED and VM_PRIVATE you can check the alignment in a common path.

Andrea Arcangeli

--
To unsubscribe, send a message with 'unsubscribe linux-mm my@address'
in the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://humbolt.geo.uu.nl/Linux-MM/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~1999-05-24 15:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-05-23 18:41 [PATCH] depricate ZMAGIC binaries Eric W. Biederman
1999-05-24 14:55 ` Andrea Arcangeli

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox