lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Thu, 31 May 2007 14:04:30 -0400
From:	Jeff Dike <jdike@...toit.com>
To:	Zach Brown <zach.brown@...cle.com>, Ingo Molnar <mingo@...e.hu>
Cc:	LKML <linux-kernel@...r.kernel.org>,
	uml-devel <user-mode-linux-devel@...ts.sourceforge.net>
Subject: [PATCH 2/3] syslet demos - AIO file reading

aio-read uses the async_exec mechanism to queue reads of pages of a
file.  As completions come in, new reads are queued until all pages in
the file have requests queued or finished.  When that has happened, it
just waits for the remaining completions to come in.

Signed-off-by: Jeff Dike <jdike@...ux.intel.com>
--
 Makefile   |    6 ++-
 aio-read.c |  114 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 118 insertions(+), 2 deletions(-)

Index: async-test-v5/Makefile
===================================================================
--- async-test-v5.orig/Makefile	2007-05-31 13:28:42.000000000 -0400
+++ async-test-v5/Makefile	2007-05-31 13:46:14.000000000 -0400
@@ -1,5 +1,4 @@
-
-all: hello syslet-test threadlet-test evserver_threadlet evserver_epoll evserver_epoll_threadlet
+all: hello syslet-test threadlet-test evserver_threadlet evserver_epoll evserver_epoll_threadlet aio-read
 	@echo version: async
 
 clean:
@@ -15,3 +14,6 @@ evserver_threadlet: evserver_threadlet.c
 	gcc -O2 -g -Wall -o evserver_threadlet evserver_threadlet.c -fomit-frame-pointer
 evserver_epoll_threadlet: evserver_epoll_threadlet.c syslet.h sys.h threadlet.h Makefile
 	gcc -O2 -g -Wall -o evserver_epoll_threadlet evserver_epoll_threadlet.c -fomit-frame-pointer
+
+aio-read: aio-read.c syslet.h sys.h Makefile
+	gcc -O2 -g -Wall -o aio-read aio-read.c -fomit-frame-pointer
Index: async-test-v5/aio-read.c
===================================================================
--- /dev/null	1970-01-01 00:00:00.000000000 +0000
+++ async-test-v5/aio-read.c	2007-05-31 13:31:00.000000000 -0400
@@ -0,0 +1,114 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <string.h>
+#include <unistd.h>
+#include <sys/fcntl.h>
+#include <sys/stat.h>
+#include "sys.h"
+
+/*
+ * Set up a syslet atom:
+ */
+static void
+init_atom(struct syslet_uatom *atom, int nr,
+	  void *arg_ptr0, void *arg_ptr1, void *arg_ptr2,
+	  void *arg_ptr3, void *arg_ptr4, void *arg_ptr5,
+	  void *ret_ptr, unsigned long flags, struct syslet_uatom *next)
+{
+	atom->nr = nr;
+	atom->arg_ptr[0] = (u64)(unsigned long)arg_ptr0;
+	atom->arg_ptr[1] = (u64)(unsigned long)arg_ptr1;
+	atom->arg_ptr[2] = (u64)(unsigned long)arg_ptr2;
+	atom->arg_ptr[3] = (u64)(unsigned long)arg_ptr3;
+	atom->arg_ptr[4] = (u64)(unsigned long)arg_ptr4;
+	atom->arg_ptr[5] = (u64)(unsigned long)arg_ptr5;
+	atom->ret_ptr = (u64)(unsigned long)ret_ptr;
+	atom->flags = flags;
+	atom->next = (u64)(unsigned long)next;
+}
+
+#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
+
+static int collect_status()
+{
+	int n = 0;
+
+	sys_async_wait(1, async_head.user_ring_idx, &async_head);
+	while(completion_ring[async_head.user_ring_idx] != 0){
+		completion_ring[async_head.user_ring_idx++] = 0;
+		async_head.user_ring_idx %= ARRAY_SIZE(completion_ring);
+		n++;
+	}
+
+	return n;
+}
+
+int main(int argc, char *argv[])
+{
+	struct syslet_uatom *atoms, *done;
+	struct stat stbuf;
+	char *file, *buf;
+	int fd, err, npages, i, len, async, sync;
+
+	if(argc < 2){
+		fprintf(stderr, "Usage : aio-read file\n");
+		exit(1);
+	}
+
+	file = argv[1];
+	fd = open(file, O_RDONLY);
+	if(fd < 0){
+		perror("open");
+		exit(1);
+	}
+
+	err = fstat(fd, &stbuf);
+	if(err < 0){
+		perror("stat");
+		exit(1);
+	}
+
+	buf = malloc(stbuf.st_size);
+	if(buf == NULL){
+		perror("malloc");
+		exit(1);
+	}
+
+	len = getpagesize();
+	npages = (stbuf.st_size + len - 1) / len;
+	atoms = malloc(npages * sizeof(struct syslet_uatom));
+	if(atoms == NULL){
+		perror("malloc atoms");
+		exit(1);
+	}
+
+	async_head_init();
+	async = 0;
+	sync = 0;
+	for(i = 0; i < npages; i++){
+		char *ptr = &buf[i * len];
+		init_atom(&atoms[i], __NR_sys_read, &fd, &ptr, &len,
+			  NULL, NULL, NULL, NULL, 0, NULL);
+		if(async_head.new_thread_stack == 0)
+			async_head.new_thread_stack = thread_stack_alloc();
+		done = sys_async_exec(&atoms[i], &async_head);
+		if(done == &atoms[i]){
+			sync++;
+			continue;
+		}
+		else if(done < 0)
+			perror("sys_async_exec");
+
+		async++;
+		if(async < ARRAY_SIZE(completion_ring))
+			continue;
+
+		async -= collect_status();
+	}
+
+	while(async)
+		async -= collect_status();
+
+	return 0;
+}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ