Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mininet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Olaf Bergmann
mininet
Commits
df600200
Commit
df600200
authored
12 years ago
by
Bob Lantz
Browse files
Options
Downloads
Patches
Plain Diff
CPULimiteHost.popen(): set cgroup and (optionally) RT priority
parent
089e8130
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
mininet/node.py
+6
-5
6 additions, 5 deletions
mininet/node.py
mnexec.c
+68
-8
68 additions, 8 deletions
mnexec.c
with
74 additions
and
13 deletions
mininet/node.py
+
6
−
5
View file @
df600200
...
...
@@ -287,7 +287,8 @@ def popen( self, *args, **kwargs ):
args: Popen() args, single list, or string
kwargs: Popen() keyword args
"""
defaults
=
{
'
stdout
'
:
PIPE
,
'
stderr
'
:
PIPE
,
'
mncmd
'
:
[
'
mnexec
'
,
'
-a
'
]
}
'
mncmd
'
:
[
'
mnexec
'
,
'
-a
'
,
str
(
self
.
pid
)
]
}
defaults
.
update
(
kwargs
)
if
len
(
args
)
==
1
:
if
type
(
args
[
0
]
)
is
list
:
...
...
@@ -302,7 +303,7 @@ def popen( self, *args, **kwargs ):
# Attach to our namespace using mnexec -a
mncmd
=
defaults
[
'
mncmd
'
]
del
defaults
[
'
mncmd
'
]
cmd
=
mncmd
+
[
str
(
self
.
pid
)
]
+
cmd
cmd
=
mncmd
+
cmd
return
Popen
(
cmd
,
**
defaults
)
def
pexec
(
self
,
*
args
,
**
kwargs
):
...
...
@@ -591,9 +592,9 @@ def popen( self, *args, **kwargs ):
kwargs: Popen() keyword args
"""
# Tell mnexec to execute command in our cgroup
mncmd
=
[
'
mnexec
'
,
'
-a
'
,
str
(
self
.
pid
),
'
-
c
'
,
self
.
cgroup
]
'
-
g
'
,
self
.
name
]
if
self
.
sched
==
'
rt
'
:
mncmd
=
[
'
chrt
'
,
self
.
rtprio
]
+
mncmd
mncmd
+
=
[
'
-r
'
,
str
(
self
.
rtprio
)
]
return
Host
.
popen
(
self
,
*
args
,
mncmd
=
mncmd
,
**
kwargs
)
def
cleanup
(
self
):
...
...
@@ -661,7 +662,7 @@ def setCPUFrac( self, f=-1, sched=None):
self
.
cgroupSet
(
qstr
,
quota
)
if
sched
==
'
rt
'
:
# Set RT priority if necessary
self
.
chrt
(
prio
=
20
)
self
.
chrt
()
info
(
'
(%s %d/%dus)
'
%
(
sched
,
quota
,
period
)
)
def
setCPUs
(
self
,
cores
,
mems
=
0
):
...
...
This diff is collapsed.
Click to expand it.
mnexec.c
+
68
−
8
View file @
df600200
...
...
@@ -7,6 +7,8 @@
* - detaching from a controlling tty using setsid
* - running in a network namespace
* - printing out the pid of a process so we can identify it later
* - attaching to a namespace and cgroup
* - setting RT scheduling
*
* Partially based on public domain setsid(1)
*/
...
...
@@ -17,16 +19,21 @@
#include
<limits.h>
#include
<syscall.h>
#include
<fcntl.h>
#include
<stdlib.h>
#include
<limits.h>
#include
<sched.h>
void
usage
(
char
*
name
)
{
printf
(
"Execution utility for Mininet.
\n
"
"usage: %s [-cdnp]
\n
"
"usage: %s [-cdnp]
[-a pid] [-g group] [-r rtprio] cmd args...
\n
"
"-c: close all file descriptors except stdin/out/error
\n
"
"-d: detach from tty by calling setsid()
\n
"
"-n: run in new network namespace
\n
"
"-p: print ^A + pid
\n
"
"-a pid: attach to pid's network namespace
\n
"
,
"-a pid: attach to pid's network namespace
\n
"
"-g group: add to cgroup
\n
"
"-r rtprio: run with SCHED_RR (usually requires -g)
\n
"
,
name
);
}
...
...
@@ -36,6 +43,47 @@ int setns(int fd, int nstype)
return
syscall
(
308
,
fd
,
nstype
);
}
/* Validate alphanumeric path foo1/bar2/baz */
void
validate
(
char
*
path
)
{
char
*
s
;
for
(
s
=
path
;
*
s
;
s
++
)
{
if
(
!
isalnum
(
*
s
)
&&
*
s
!=
'/'
)
{
fprintf
(
stderr
,
"invalid path: %s
\n
"
,
path
);
exit
(
1
);
}
}
}
/* Add our pid to cgroup */
int
cgroup
(
char
*
gname
)
{
static
char
path
[
PATH_MAX
];
static
char
*
groups
[]
=
{
"cpu"
,
"cpuacct"
,
"cpuset"
,
NULL
};
char
**
gptr
;
pid_t
pid
=
getpid
();
int
count
=
0
;
validate
(
gname
);
for
(
gptr
=
groups
;
*
gptr
;
gptr
++
)
{
FILE
*
f
;
snprintf
(
path
,
PATH_MAX
,
"/sys/fs/cgroup/%s/%s/tasks"
,
*
gptr
,
gname
);
f
=
fopen
(
path
,
"w"
);
if
(
f
)
{
count
++
;
fprintf
(
f
,
"%d
\n
"
,
pid
);
fclose
(
f
);
}
}
if
(
!
count
)
{
fprintf
(
stderr
,
"cgroup: could not add to cgroup %s
\n
"
,
gname
);
exit
(
1
);
}
}
int
main
(
int
argc
,
char
*
argv
[])
{
char
c
;
...
...
@@ -43,8 +91,8 @@ int main(int argc, char *argv[])
char
path
[
PATH_MAX
];
int
nsid
;
int
pid
;
while
((
c
=
getopt
(
argc
,
argv
,
"+cdnpa:"
))
!=
-
1
)
static
struct
sched_param
sp
;
while
((
c
=
getopt
(
argc
,
argv
,
"+cdnpa:
g:r:
"
))
!=
-
1
)
switch
(
c
)
{
case
'c'
:
/* close file descriptors except stdin/out/error */
...
...
@@ -92,16 +140,28 @@ int main(int argc, char *argv[])
return
1
;
}
break
;
case
'g'
:
/* Attach to cgroup */
cgroup
(
optarg
);
break
;
case
'r'
:
/* Set RT scheduling priority */
sp
.
sched_priority
=
atoi
(
optarg
);
if
(
sched_setscheduler
(
getpid
(),
SCHED_RR
,
&
sp
)
<
0
)
{
perror
(
"sched_setscheduler"
);
return
1
;
}
break
;
default:
usage
(
argv
[
0
]);
break
;
}
if
(
optind
<
argc
)
{
execvp
(
argv
[
optind
],
&
argv
[
optind
]);
perror
(
argv
[
optind
]);
return
1
;
}
execvp
(
argv
[
optind
],
&
argv
[
optind
]);
perror
(
argv
[
optind
]);
return
1
;
}
usage
(
argv
[
0
]);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment