]> andersk Git - openssh.git/commitdiff
- (djm) Fixup for AIX getuserattr() support from Tom Bertelson
authordjm <djm>
Mon, 10 Jul 2000 23:16:22 +0000 (23:16 +0000)
committerdjm <djm>
Mon, 10 Jul 2000 23:16:22 +0000 (23:16 +0000)
   <tbert@abac.com>

ChangeLog
session.c

index dc179dd45704912687cd32aa5e3566f3eb575134..5aea81e798f01348d8883343b6fe3c2b3c3dc218 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20000711
+ - (djm) Fixup for AIX getuserattr() support from Tom Bertelson
+   <tbert@abac.com>
+
 20000709
  - (djm) Only enable PAM_TTY kludge for Linux. Problem report from
    Kevin Steves <stevesk@sweden.hp.com>
index 1f0d227d08f117ff1467a6e6453cfea5928b5f10..7fe2b47f4c58aa1c92c2f00755d0a2d3cd4a9cd8 100644 (file)
--- a/session.c
+++ b/session.c
@@ -799,24 +799,52 @@ void do_pam_environment(char ***env, int *envsize)
 void set_limit(char *user, char *soft, char *hard, int resource, int mult)
 {
        struct rlimit rlim;
-       rlim_t tlim;
-       int mask;
+       int slim, hlim;
 
        getrlimit(resource, &rlim);
 
-       tlim = (rlim_t) 0;
-       if (getuserattr(user, soft, &tlim, SEC_INT) != -1 && tlim)
-               rlim.rlim_cur = tlim * mult;
+       slim = 0;
+       if (getuserattr(user, soft, &slim, SEC_INT) != -1) {
+               if (slim < 0) {
+                       rlim.rlim_cur = RLIM_INFINITY;
+               } else if (slim != 0) {
+                       /* See the wackiness below */
+                       if (rlim.rlim_cur == slim * mult)
+                               slim = 0;
+                       else
+                               rlim.rlim_cur = slim * mult;
+               }
+       }
 
-       tlim = (rlim_t) 0;
-       if (getuserattr(user, hard, &tlim, SEC_INT) != -1 && tlim)
-               rlim.rlim_max = tlim * mult;
+       hlim = 0;
+       if (getuserattr(user, hard, &hlim, SEC_INT) != -1) {
+               if (hlim < 0) {
+                       rlim.rlim_max = RLIM_INFINITY;
+               } else if (hlim != 0) {
+                       rlim.rlim_max = hlim * mult;
+               }
+       }
 
-       if (rlim.rlim_cur > rlim.rlim_max)
+       /*
+        * XXX For cpu and fsize the soft limit is set to the hard limit
+        * if the hard limit is left at its default value and the soft limit
+        * is changed from its default value, either by requesting it
+        * (slim == 0) or by setting it to the current default.  At least
+        * that's how rlogind does it.  If you're confused you're not alone.
+        * Bug or feature? AIX 4.3.1.2
+        */
+       if ((!strcmp(soft, "fsize") || !strcmp(soft, "cpu"))
+           && hlim == 0 && slim != 0)
+               rlim.rlim_max = rlim.rlim_cur;
+       /* A specified hard limit limits the soft limit */
+       else if (hlim > 0 && rlim.rlim_cur > rlim.rlim_max)
+               rlim.rlim_cur = rlim.rlim_max;
+       /* A soft limit can increase a hard limit */
+       else if (rlim.rlim_cur > rlim.rlim_max)
                rlim.rlim_max = rlim.rlim_cur;
 
        if (setrlimit(resource, &rlim) != 0)
-               error("setrlimit(%.10s) failed: %.100s", soft, strerror(errno))
+               error("setrlimit(%.10s) failed: %.100s", soft, strerror(errno));
 }
 
 void set_limits_from_userattr(char *user)
This page took 0.044888 seconds and 5 git commands to generate.