use $(LIBENSCVECTOR) instead of libensc_vector.a
[util-vserver.git] / util-vserver / src / exec-ulimit.c
index a0a484c..a487963 100644 (file)
 #  include <config.h>
 #endif
 
-#include "wrappers.h"
 #include "util.h"
 
 #include <sys/time.h>
 #include <sys/resource.h>
 #include <unistd.h>
+#include <fcntl.h>
+#include <errno.h>
+
+#define ENSC_WRAPPERS_PREFIX   "exec-ulimit: "
+#define ENSC_WRAPPERS_UNISTD   1
+#define ENSC_WRAPPERS_FCNTL    1
+#define ENSC_WRAPPERS_RESOURCE 1
+#include <wrappers.h>
 
 #define DECLARE_LIMIT(RES,FNAME) { #FNAME, RLIMIT_##RES }
 
@@ -35,6 +42,7 @@ static struct {
     char const *fname;
     int                code;
 } const LIMITS[] = {
+  DECLARE_LIMIT(CORE,    core),
   DECLARE_LIMIT(CPU,     cpu),
   DECLARE_LIMIT(DATA,    data),
   DECLARE_LIMIT(FSIZE,   fsize),
@@ -58,6 +66,16 @@ readValue(int fd, char const *filename)
   if (strncmp(buf, "inf", 3)==0) return RLIM_INFINITY;
   res = strtol(buf, &errptr, 0);
 
+  if (errptr!=buf) {
+    switch (*errptr) {
+      case 'M' :  res *= 1024; /* fallthrough */
+      case 'K' :  res *= 1024; ++errptr; break;
+      case 'm' :  res *= 1000; /* fallthrough */
+      case 'k' :  res *= 1000; ++errptr; break;
+      default  :  break;
+    }
+  }
+
   if (errptr==buf || (*errptr!='\0' && *errptr!='\n')) {
     WRITE_MSG(2, "Invalid limit in '");
     WRITE_STR(2, filename);