Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Postfix/src/util/   (Postfix Mailserver Version 3.11©)  Datei vom 25.0.2012 mit Größe 1 kB image not shown  

Quelle  stat_as.c

  Sprache: C
 

/*++
/* NAME
/* stat_as 3
/* SUMMARY
/* stat file as user
/* SYNOPSIS
/* #include <sys/stat.h>
/* #include <stat_as.h>
/*
/* int stat_as(path, st, euid, egid)
/* const char *path;
/* struct stat *st;
/* uid_t euid;
/* gid_t egid;
/* DESCRIPTION
/* stat_as() looks up the file status of the named \fIpath\fR,
/* using the effective rights specified by \fIeuid\fR
/* and \fIegid\fR, and stores the result into the structure pointed
/* to by \fIst\fR.  A -1 result means the lookup failed.
/* This call follows symbolic links.
/* DIAGNOSTICS
/* Fatal error: no permission to change privilege level.
/* SEE ALSO
/* set_eugid(3) switch effective rights
/* LICENSE
/* .ad
/* .fi
/* The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/* Wietse Venema
/* IBM T.J. Watson Research
/* P.O. Box 704
/* Yorktown Heights, NY 10598, USA
/*--*/


/* System library. */

#include <sys_defs.h>
#include <sys/stat.h>
#include <unistd.h>

/* Utility library. */

#include "msg.h"
#include "set_eugid.h"
#include "stat_as.h"
#include "warn_stat.h"

/* stat_as - stat file as user */

int     stat_as(const char *path, struct stat * st, uid_t euid, gid_t egid)
{
    uid_t   saved_euid = geteuid();
    gid_t   saved_egid = getegid();
    int     status;

    /*
     * Switch to the target user privileges.
     */

    set_eugid(euid, egid);

    /*
     * Stat that file.
     */

    status = stat(path, st);

    /*
     * Restore saved privileges.
     */

    set_eugid(saved_euid, saved_egid);

    return (status);
}

Messung V0.5 in Prozent
C=48 H=100 G=78

¤ Dauer der Verarbeitung: 0.1 Sekunden  (vorverarbeitet am  2026-08-09) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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.