From: Simon Ruderich Date: Mon, 10 Jun 2019 20:26:00 +0000 (+0200) Subject: nss: merge cash.h into file.h X-Git-Tag: 0.1~76 X-Git-Url: https://ruderich.org/simon/gitweb/?p=nsscash%2Fnsscash.git;a=commitdiff_plain;h=8d862d90f3530d340ef2b3f50973a8abcf9edf99 nss: merge cash.h into file.h file.h is a more logical place anyway and this gets rid of a useless header file. --- diff --git a/nss/cash.h b/nss/cash.h deleted file mode 100644 index d227655..0000000 --- a/nss/cash.h +++ /dev/null @@ -1,56 +0,0 @@ -/* - * General header of nsscash - * - * Copyright (C) 2019 Simon Ruderich - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program 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 Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ - -#ifndef CASH_H -#define CASH_H - -#include - - -// Global constants - -#define MAGIC "NSS-CASH" - -// Defined in Makefile -#ifndef NSSCASH_PASSWD_FILE -# define NSSCASH_PASSWD_FILE "/etc/passwd.nsscash" -#endif -#ifndef NSSCASH_GROUP_FILE -# define NSSCASH_GROUP_FILE "/etc/group.nsscash" -#endif - - -// Global structs - -struct header { - char magic[8]; // magic string - uint64_t version; // also doubles as byte-order check - - uint64_t count; - - // All offsets are relative to data - uint64_t off_orig_index; - uint64_t off_id_index; - uint64_t off_name_index; - uint64_t off_data; - - char data[]; -} __attribute__((packed)); - -#endif diff --git a/nss/file.h b/nss/file.h index 7aac37c..539d219 100644 --- a/nss/file.h +++ b/nss/file.h @@ -24,8 +24,32 @@ #include #include -#include "cash.h" +#define MAGIC "NSS-CASH" + +// Defined in Makefile +#ifndef NSSCASH_PASSWD_FILE +# define NSSCASH_PASSWD_FILE "/etc/passwd.nsscash" +#endif +#ifndef NSSCASH_GROUP_FILE +# define NSSCASH_GROUP_FILE "/etc/group.nsscash" +#endif + + +struct header { + char magic[8]; // magic string + uint64_t version; // also doubles as byte-order check + + uint64_t count; + + // All offsets are relative to data + uint64_t off_orig_index; + uint64_t off_id_index; + uint64_t off_name_index; + uint64_t off_data; + + char data[]; +} __attribute__((packed)); struct file { int fd; diff --git a/nss/gr.c b/nss/gr.c index c49ef47..fbfd02f 100644 --- a/nss/gr.c +++ b/nss/gr.c @@ -25,7 +25,6 @@ #include -#include "cash.h" #include "cash_nss.h" #include "file.h" #include "search.h" diff --git a/nss/pw.c b/nss/pw.c index 1dd9d3b..e4f99aa 100644 --- a/nss/pw.c +++ b/nss/pw.c @@ -25,7 +25,6 @@ #include -#include "cash.h" #include "cash_nss.h" #include "file.h" #include "search.h"