-
Eric Vidal authoredEric Vidal authored
tree_resolve_master_create.c 1.43 KiB
/*
* tree_resolve_master_create.c
*
* Copyright (c) 2018-2021 Eric Vidal <eric@obarun.org>
*
* All rights reserved.
*
* This file is part of Obarun. It is subject to the license terms in
* the LICENSE file found in the top-level directory of this
* distribution.
* This file may not be copied, modified, propagated, or distributed
* except according to the terms contained in the LICENSE file.
*/
#include <stdint.h>
#include <string.h>
#include <pwd.h>
#include <sys/stat.h>
#include <errno.h>
#include <oblibs/log.h>
#include <oblibs/string.h>
#include <66/tree.h>
#include <66/resolve.h>
#include <66/constants.h>
int tree_resolve_master_create(char const *base, uid_t owner)
{
log_flow() ;
int e = 0 ;
size_t baselen = strlen(base) ;
struct passwd *pw = getpwuid(owner) ;
resolve_tree_master_t mres = RESOLVE_TREE_MASTER_ZERO ;
resolve_wrapper_t_ref wres = resolve_set_struct(DATA_TREE_MASTER, &mres) ;
char dst[baselen + SS_SYSTEM_LEN + 1] ;
if (!pw) {
if (!errno)
errno = ESRCH ;
goto err ;
}
resolve_init(wres) ;
auto_strings(dst, base, SS_SYSTEM) ;
mres.name = resolve_add_string(wres, SS_MASTER + 1) ;
mres.allow = resolve_add_string(wres, pw->pw_name) ;
log_trace("write Master resolve file of trees") ;
if (!resolve_write(wres, dst, SS_MASTER + 1))
goto err ;
e = 1 ;
err:
resolve_free(wres) ;
return e ;
}