Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  test_sysctl_loop2.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0
// Copyright (c) 2019 Facebook

#include <stdint.h>
#include <string.h>

#include <linux/stddef.h>
#include <linux/bpf.h>

#include <bpf/bpf_helpers.h>

#include "bpf_compiler.h"
#include "bpf_misc.h"

/* tcp_mem sysctl has only 3 ints, but this test is doing TCP_MEM_LOOPS */
#define TCP_MEM_LOOPS 20  /* because 30 doesn't fit into 512 bytes of stack */
#define MAX_ULONG_STR_LEN 7
#define MAX_VALUE_STR_LEN (TCP_MEM_LOOPS * MAX_ULONG_STR_LEN)

const char tcp_mem_name[] = "net/ipv4/tcp_mem/very_very_very_very_long_pointless_string_to_stress_byte_loop";
static __attribute__((noinline)) int is_tcp_mem(struct bpf_sysctl *ctx)
{
 unsigned char i;
 char name[sizeof(tcp_mem_name)];
 int ret;

 memset(name, 0, sizeof(name));
 ret = bpf_sysctl_get_name(ctx, name, sizeof(name), 0);
 if (ret < 0 || ret != sizeof(tcp_mem_name) - 1)
  return 0;

 __pragma_loop_no_unroll
 for (i = 0; i < sizeof(tcp_mem_name); ++i)
  if (name[i] != tcp_mem_name[i])
   return 0;

 return 1;
}


SEC("cgroup/sysctl")
int sysctl_tcp_mem(struct bpf_sysctl *ctx)
{
 unsigned long tcp_mem[TCP_MEM_LOOPS] = {};
 char value[MAX_VALUE_STR_LEN];
 unsigned char i, off = 0;
 int ret;

 if (ctx->write)
  return 0;

 if (!is_tcp_mem(ctx))
  return 0;

 ret = bpf_sysctl_get_current_value(ctx, value, MAX_VALUE_STR_LEN);
 if (ret < 0 || ret >= MAX_VALUE_STR_LEN)
  return 0;

 __pragma_loop_no_unroll
 for (i = 0; i < ARRAY_SIZE(tcp_mem); ++i) {
  ret = bpf_strtoul(value + off, MAX_ULONG_STR_LEN, 0,
      tcp_mem + i);
  if (ret <= 0 || ret > MAX_ULONG_STR_LEN)
   return 0;
  off += ret & MAX_ULONG_STR_LEN;
 }

 return tcp_mem[0] < tcp_mem[1] && tcp_mem[1] < tcp_mem[2];
}

char _license[] SEC("license") = "GPL";

Messung V0.5
C=95 H=90 G=92

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge