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
|
/*-------------------------------------------------------------------------
*
* Shared Disk File EXclusiveness Control Program(SF-EX)
*
* sfex_init.c --- Initialize SF-EX meta-data.
*
* This program 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.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*
* Copyright (c) 2007 NIPPON TELEGRAPH AND TELEPHONE CORPORATION
*
* $Id$
*
*-------------------------------------------------------------------------
*
* sfex_init [-b <blocksize>] [-n <numlocks>] <device>
*
* -b <blocksize> --- The size of the block is specified by the number of
* bytes. In general, to prevent a partial writing to the disk, the size
* of block is set to 512 bytes etc.
* Note a set value because this value is used also for the alignment
* adjustment in the input-output buffer in the program when direct I/O
* is used(When you specify --enable-directio option for configure script).
* (In Linux kernel 2.6, "direct I/O " does not work if this value is not
* a multiple of 512.) Default is 512 bytes.
*
* -n <numlocks> --- The number of storing lock data is specified by integer
* of one or more. When you want to control two or more resources by one
* meta-data, you set the value of two or more to numlocks. A necessary disk
* area for meta data are (blocksize*(1+numlocks))bytes. Default is 1.
*
* <device> --- This is file path which stored meta-data. It is usually
* expressed in "/dev/...", because it is partition on the shared disk.
*
* exit code --- 0 - Normal end. 3 - Error occurs while processing it.
* The content of the error is displayed into stderr. 4 - The mistake is
* found in the command line parameter.
*
*-------------------------------------------------------------------------*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#include <getopt.h>
#include <syslog.h>
#include "sfex.h"
#include "sfex_lib.h"
const char *progname;
char *nodename;
/*
* usage --- display command line syntax
*
* display command line syntax. By the purpose, it can specify destination
* stream. stdout or stderr is set usually.
*
* dist --- destination stream of the command line syntax, such as stderr.
*
* return value --- void
*/
static void usage(FILE *dist) {
fprintf(dist, "usage: %s [-n <numlocks>] <device>\n", progname);
}
/*
* main --- main function
*
* entry point of sfex_init command.
*
* exit code --- 0 - Normal end. 3 - Error occurs while processing it.
* The content of the error is displayed into stderr. 4 - The mistake is
* found in the command line parameter.
*/
int
main(int argc, char *argv[]) {
sfex_controldata cdata;
sfex_lockdata ldata;
/* command line parameter */
int numlocks = 1; /* default 1 locks */
const char *device;
/*
* startup process
*/
/*
openlog("SFex Init", LOG_PID|LOG_CONS, LOG_USER);
*/
/* get a program name */
progname = get_progname(argv[0]);
/* read command line option */
opterr = 0;
while (1) {
int c = getopt(argc, argv, "hn:");
if (c == -1)
break;
switch (c) {
case 'h': /* help */
usage(stdout);
exit(0);
case 'n': /* -n <numlocks> */
{
unsigned long l = strtoul(optarg, NULL, 10);
if (l < SFEX_MIN_NUMLOCKS || l > SFEX_MAX_NUMLOCKS) {
fprintf(stderr,
"%s: ERROR: numlocks %s is out of range or invalid. it must be integer value between %lu and %lu.\n",
progname, optarg,
(unsigned long)SFEX_MIN_NUMLOCKS,
(unsigned long)SFEX_MAX_NUMLOCKS);
exit(4);
}
numlocks = l;
}
break;
case '?': /* error */
usage(stderr);
exit(4);
}
}
/* check parameter except the option */
if (optind >= argc) {
fprintf(stderr, "%s: ERROR: no device specified.\n", progname);
usage(stderr);
exit(4);
} else if (optind + 1 < argc) {
fprintf(stderr, "%s: ERROR: too many arguments.\n", progname);
usage(stderr);
exit(4);
}
device = argv[optind];
prepare_lock(device);
/* main processes start */
/* get a node name */
nodename = get_nodename();
/* create and control data and lock data */
init_controldata(&cdata, sector_size, numlocks);
init_lockdata(&ldata);
/* write out control data and lock data */
write_controldata(&cdata);
{
int index;
for (index = 1; index <= numlocks; index++)
write_lockdata(&cdata, &ldata, index);
}
exit(0);
}
|