All of lore.kernel.org
 help / color / mirror / Atom feed
* [BUG][cryo] Create file on restart ?
@ 2008-07-16 18:50 sukadev-r/Jw6+rmf7HQT0dZR+AlfA
       [not found] ` <20080716185027.GA1335-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 12+ messages in thread
From: sukadev-r/Jw6+rmf7HQT0dZR+AlfA @ 2008-07-16 18:50 UTC (permalink / raw)
  To: Containers


cryo does not (cannot ?) recreate files if the application created
a file before checkpoint and the file does not exist at the time
of restart.

Note that the 'flags' field in '/proc/$pid/fdinfo/$fd' will not
have the O_CREAT (or O_TRUNC, O_EXCL, O_NOCTTY) flags. These
are cleared in __dentry_open()).

At the time of restart, is there a way for cryo to know that the
file must be created ?

To reproduce:
	- run following program, 
	- checkpoint after the first printf
	- rm /tmp/foo1
	- restart	# fails to open file during restart

---
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <sys/fcntl.h>

main()
{
	int fd;
	int i;
	char *buf = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";

	fd = open("/tmp/foo1", O_RDWR|O_CREAT|O_TRUNC, 0666);

	if (fd < 0) {
		perror("open");
		exit(1);
	}
	printf("%d: Opened '/tmp/foo1', fd %d\n", getpid(), fd);
	
	for (i = 0; i < strlen(buf); i++) {
		if (write(fd, &buf[i], 1) < 0) {
			printf("Error %d writing %c to file, i %d\n",
					errno, buf[i], i);
			exit(1);
		}
		printf("%d: i %d, wrote %c\n", getpid(), i, buf[i]);
		sleep(2);
	}
}

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

end of thread, other threads:[~2008-07-17 23:35 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-16 18:50 [BUG][cryo] Create file on restart ? sukadev-r/Jw6+rmf7HQT0dZR+AlfA
     [not found] ` <20080716185027.GA1335-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-07-16 19:26   ` Serge E. Hallyn
     [not found]     ` <20080716192604.GA27454-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-07-16 20:45       ` sukadev-r/Jw6+rmf7HQT0dZR+AlfA
     [not found]         ` <20080716204529.GA4278-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-07-16 20:57           ` Serge E. Hallyn
     [not found]             ` <20080716205737.GA2082-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-07-16 21:26               ` sukadev-r/Jw6+rmf7HQT0dZR+AlfA
     [not found]                 ` <20080716212609.GB4278-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-07-16 22:31                   ` Matt Helsley
     [not found]                     ` <1216247460.4844.177.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2008-07-16 23:20                       ` sukadev-r/Jw6+rmf7HQT0dZR+AlfA
2008-07-17  2:21                       ` Serge E. Hallyn
     [not found]                         ` <20080717022134.GB21726-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-07-17 23:35                           ` Oren Laadan
2008-07-17  2:18                   ` Serge E. Hallyn
2008-07-17 23:22                   ` Oren Laadan
2008-07-16 20:59       ` Matt Helsley

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.