File: test_update.py

package info (click to toggle)
crun 1.26-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,356 kB
  • sloc: ansic: 70,844; python: 14,125; sh: 5,122; makefile: 928
file content (575 lines) | stat: -rwxr-xr-x 19,368 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
#!/bin/env python3
# crun - OCI runtime written in C
#
# Copyright (C) 2017, 2018, 2019 Giuseppe Scrivano <giuseppe@scrivano.org>
# crun is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# crun is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with crun.  If not, see <http://www.gnu.org/licenses/>.

import json
import os
import subprocess
import time
from tests_utils import *

def test_update_memory_limit():
    """Test updating memory limit on a running container."""
    if is_rootless():
        return (77, "requires root for cgroup update")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    # Set initial memory limit
    conf['linux']['resources'] = {
        'memory': {
            'limit': 200 * 1024 * 1024  # 200MB
        }
    }

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Update memory limit to 100MB
        run_crun_command(['update', '--memory', '104857600', cid])

        # Verify the limit was updated by checking cgroup
        if is_cgroup_v2_unified():
            mem_file = '/sys/fs/cgroup/memory.max'
        else:
            mem_file = '/sys/fs/cgroup/memory/memory.limit_in_bytes'

        out = run_crun_command(['exec', cid, '/init', 'cat', mem_file])
        # Allow for some variation in exact value
        value = out.strip()
        if value != 'max' and int(value) != 104857600:
            # On some systems the value might be page-aligned
            if abs(int(value) - 104857600) > 4096:
                logger.info("memory limit not updated correctly: %s", value)
                return -1

        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "memory" in output.lower() or "cgroup" in output.lower():
            return (77, "memory cgroup not available")
        logger.info("test failed: %s", e)
        return -1
    except Exception as e:
        logger.info("test failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


def test_update_cpu_shares():
    """Test updating CPU shares on a running container."""
    if is_rootless():
        return (77, "requires root for cgroup update")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Update CPU shares
        run_crun_command(['update', '--cpu-share', '512', cid])

        # Verify the shares were updated
        if is_cgroup_v2_unified():
            # On cgroup v2, shares are converted to weight
            cpu_file = '/sys/fs/cgroup/cpu.weight'
            out = run_crun_command(['exec', cid, '/init', 'cat', cpu_file])
            # 512 shares converts to ~50 weight (shares/1024 * 100, clamped)
            value = int(out.strip())
            if value < 1 or value > 10000:
                logger.info("cpu weight out of range: %d", value)
                return -1
        else:
            cpu_file = '/sys/fs/cgroup/cpu/cpu.shares'
            out = run_crun_command(['exec', cid, '/init', 'cat', cpu_file])
            if int(out.strip()) != 512:
                logger.info("cpu shares not updated: %s", out.strip())
                return -1

        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "cpu" in output.lower() or "cgroup" in output.lower():
            return (77, "cpu cgroup not available")
        logger.info("test failed: %s", e)
        return -1
    except Exception as e:
        logger.info("test failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


def test_update_cpu_quota():
    """Test updating CPU quota on a running container."""
    if is_rootless():
        return (77, "requires root for cgroup update")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Update CPU quota (50% of one CPU)
        run_crun_command(['update', '--cpu-quota', '50000', cid])

        # Verify the quota was updated
        if is_cgroup_v2_unified():
            cpu_file = '/sys/fs/cgroup/cpu.max'
            out = run_crun_command(['exec', cid, '/init', 'cat', cpu_file])
            # Format is "quota period" or "max period"
            parts = out.strip().split()
            if parts[0] != '50000' and parts[0] != 'max':
                logger.info("cpu quota not updated: %s", out.strip())
                return -1
        else:
            cpu_file = '/sys/fs/cgroup/cpu/cpu.cfs_quota_us'
            out = run_crun_command(['exec', cid, '/init', 'cat', cpu_file])
            if int(out.strip()) != 50000:
                logger.info("cpu quota not updated: %s", out.strip())
                return -1

        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "cpu" in output.lower() or "cgroup" in output.lower():
            return (77, "cpu cgroup not available")
        logger.info("test failed: %s", e)
        return -1
    except Exception as e:
        logger.info("test failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


def test_update_pids_limit():
    """Test updating PIDs limit on a running container."""
    if is_rootless():
        return (77, "requires root for cgroup update")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Update PIDs limit
        run_crun_command(['update', '--pids-limit', '100', cid])

        # Verify the limit was updated
        if is_cgroup_v2_unified():
            pids_file = '/sys/fs/cgroup/pids.max'
        else:
            pids_file = '/sys/fs/cgroup/pids/pids.max'

        out = run_crun_command(['exec', cid, '/init', 'cat', pids_file])
        value = out.strip()
        if value != '100' and value != 'max':
            logger.info("pids limit not updated: %s", value)
            return -1

        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "pids" in output.lower() or "cgroup" in output.lower():
            return (77, "pids cgroup not available")
        logger.info("test failed: %s", e)
        return -1
    except Exception as e:
        logger.info("test failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


def test_update_blkio_weight():
    """Test updating blkio weight on a running container."""
    if is_rootless():
        return (77, "requires root for cgroup update")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Update blkio weight
        run_crun_command(['update', '--blkio-weight', '500', cid])

        # Verification is tricky as blkio weight files vary by system
        # Just verify the command succeeded
        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "blkio" in output.lower() or "io" in output.lower() or "cgroup" in output.lower():
            return (77, "blkio cgroup not available")
        logger.info("test failed: %s", e)
        return -1
    except Exception as e:
        logger.info("test failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


def test_update_from_file():
    """Test updating resources from a JSON file."""
    if is_rootless():
        return (77, "requires root for cgroup update")
    if not is_cgroup_v2_unified():
        return (77, "requires cgroup v2")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Create resources file
        import tempfile
        resources = {
            "memory": {
                "limit": 150 * 1024 * 1024
            },
            "pids": {
                "limit": 50
            }
        }

        with tempfile.NamedTemporaryFile(mode='w', suffix='.json', delete=False) as f:
            json.dump(resources, f)
            resources_file = f.name

        try:
            # Update from file
            run_crun_command(['update', '--resources', resources_file, cid])
        finally:
            os.unlink(resources_file)

        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "cgroup" in output.lower():
            return (77, "cgroup not available")
        logger.info("test failed: %s", e)
        return -1
    except Exception as e:
        logger.info("test failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


def test_update_memory_swap():
    """Test updating memory swap limit on a running container."""
    if is_rootless():
        return (77, "requires root for cgroup update")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    # Set initial memory and swap limits
    conf['linux']['resources'] = {
        'memory': {
            'limit': 200 * 1024 * 1024,  # 200MB
            'swap': 400 * 1024 * 1024    # 400MB
        }
    }

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Update memory and swap limit together (swap requires memory to be set)
        run_crun_command(['update', '--memory', '104857600', '--memory-swap', '209715200', cid])

        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "memory" in output.lower() or "swap" in output.lower() or "cgroup" in output.lower():
            return (77, "memory swap cgroup not available")
        logger.info("test failed: %s", e)
        return -1
    except Exception as e:
        logger.info("test failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


def test_update_cpu_period():
    """Test updating CPU period on a running container."""
    if is_rootless():
        return (77, "requires root for cgroup update")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Update CPU period
        run_crun_command(['update', '--cpu-period', '50000', cid])

        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "cpu" in output.lower() or "cgroup" in output.lower():
            return (77, "cpu cgroup not available")
        logger.info("test failed: %s", e)
        return -1
    except Exception as e:
        logger.info("test failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


def test_update_memory_reservation():
    """Test updating memory reservation (soft limit) on a running container."""
    if is_rootless():
        return (77, "requires root for cgroup update")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Update memory reservation (soft limit)
        run_crun_command(['update', '--memory-reservation', '52428800', cid])

        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "memory" in output.lower() or "cgroup" in output.lower():
            return (77, "memory cgroup not available")
        logger.info("test failed: %s", e)
        return -1
    except Exception as e:
        logger.info("test failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


def test_update_cpuset_cpus():
    """Test updating cpuset.cpus on a running container."""
    if is_rootless():
        return (77, "cpuset update requires root")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Update cpuset.cpus to use only CPU 0
        run_crun_command_raw(['update', '--cpuset-cpus', '0', cid])

        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "cpuset" in output.lower() or "cgroup" in output.lower() or "controller" in output.lower():
            return (77, "cpuset cgroup not available")
        logger.info("test_update_cpuset_cpus failed: %s, output: %s", e, output)
        return -1
    except Exception as e:
        logger.info("test_update_cpuset_cpus failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


def test_update_cpuset_mems():
    """Test updating cpuset.mems on a running container."""
    if is_rootless():
        return (77, "cpuset mems update requires root")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Update cpuset.mems to use only memory node 0
        run_crun_command(['update', '--cpuset-mems', '0', cid])

        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "cpuset" in output.lower() or "cgroup" in output.lower() or "numa" in output.lower():
            return (77, "cpuset mems not available")
        logger.info("test failed: %s", e)
        return -1
    except Exception as e:
        logger.info("test failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


def test_update_multiple_resources():
    """Test updating multiple resources at once."""
    if is_rootless():
        return (77, "requires root for cgroup update")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Update multiple resources at once
        # Use --cpu-share (not --cpu-shares) as that's what crun uses
        run_crun_command(['update',
                        '--memory', '104857600',
                        '--cpu-share', '256',
                        '--pids-limit', '50',
                        cid])

        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "cgroup" in output.lower() or "cpu" in output.lower() or "memory" in output.lower():
            return (77, "cgroup not available")
        logger.info("test failed: %s", e)
        return -1
    except Exception as e:
        logger.info("test failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


def test_update_unified_resources():
    """Test updating resources using unified cgroup settings."""
    if is_rootless():
        return (77, "requires root for cgroup update")
    if not is_cgroup_v2_unified():
        return (77, "requires cgroup v2")

    conf = base_config()
    add_all_namespaces(conf, cgroupns=True)
    conf['process']['args'] = ['/init', 'pause']

    cid = None
    try:
        _, cid = run_and_get_output(conf, hide_stderr=True, command='run', detach=True)

        # Create resources file with unified settings
        import tempfile
        resources = {
            "unified": {
                "memory.high": "100000000"
            }
        }

        with tempfile.NamedTemporaryFile(mode='w', suffix='.json', delete=False) as f:
            json.dump(resources, f)
            resources_file = f.name

        try:
            run_crun_command(['update', '--resources', resources_file, cid])
        finally:
            os.unlink(resources_file)

        return 0

    except subprocess.CalledProcessError as e:
        output = e.output.decode('utf-8', errors='ignore') if e.output else ''
        if "cgroup" in output.lower() or "unified" in output.lower():
            return (77, "unified cgroup settings not available")
        logger.info("test failed: %s", e)
        return -1
    except Exception as e:
        logger.info("test failed: %s", e)
        return -1
    finally:
        if cid is not None:
            run_crun_command(["delete", "-f", cid])


all_tests = {
    "update-memory-limit": test_update_memory_limit,
    "update-cpu-shares": test_update_cpu_shares,
    "update-cpu-quota": test_update_cpu_quota,
    "update-pids-limit": test_update_pids_limit,
    "update-blkio-weight": test_update_blkio_weight,
    "update-from-file": test_update_from_file,
    "update-memory-swap": test_update_memory_swap,
    "update-cpu-period": test_update_cpu_period,
    "update-memory-reservation": test_update_memory_reservation,
    "update-cpuset-cpus": test_update_cpuset_cpus,
    "update-cpuset-mems": test_update_cpuset_mems,
    "update-multiple-resources": test_update_multiple_resources,
    "update-unified-resources": test_update_unified_resources,
}

if __name__ == "__main__":
    tests_main(all_tests)