ready for tagging
[util-vserver.git] / src / vdevmap.c
1 // $Id: vdevmap.c 2490 2007-02-05 20:45:25Z dhozac $    --*- c -*--
2
3 // Copyright (C) 2006 Daniel Hokka Zakrisson
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19 #ifdef HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #include "util.h"
24 #include <lib/internal.h>
25
26 #include <vserver.h>
27
28 #include <getopt.h>
29 #include <errno.h>
30
31 #define ENSC_WRAPPERS_PREFIX    "vdevmap: "
32 #define ENSC_WRAPPERS_UNISTD    1
33 #define ENSC_WRAPPERS_VSERVER   1
34 #include <wrappers.h>
35
36 #define CMD_HELP                0x1000
37 #define CMD_VERSION             0x1001
38
39 int             wrapper_exit_code  =  1;
40
41 struct option const
42 CMDLINE_OPTIONS[] = {
43   { "help",       no_argument,       0, CMD_HELP },
44   { "version",    no_argument,       0, CMD_VERSION },
45   { "xid",        required_argument, 0, 'x' },
46   { "open",       no_argument,       0, 'o' },
47   { "create",     no_argument,       0, 'c' },
48   { "remap",      no_argument,       0, 'r' },
49   { "flags",      required_argument, 0, 'f' },
50   { "device",     required_argument, 0, 'd' },
51   { "target",     required_argument, 0, 't' },
52   {0,0,0,0}
53 };
54
55 static void
56 showHelp(int fd, char const *cmd)
57 {
58   WRITE_MSG(fd, "Usage: ");
59   WRITE_STR(fd, cmd);
60   WRITE_MSG(fd,
61             " --xid <xid> [--flags <flags>] [--open] [--create] [--remap] [--device <dev>] [--target <dev>]\n"
62             "\n"
63             "Please report bugs to " PACKAGE_BUGREPORT "\n");
64
65   exit(0);
66 }
67
68 static void
69 showVersion()
70 {
71   WRITE_MSG(1,
72             "vdevmap " VERSION " -- manages device mappings\n"
73             "This program is part of " PACKAGE_STRING "\n\n"
74             "Copyright (C) 2006 Daniel Hokka Zakrisson\n"
75             VERSION_COPYRIGHT_DISCLAIMER);
76   exit(0);
77 }
78
79 int main(int argc, char *argv[])
80 {
81   xid_t         xid             = VC_NOCTX;
82   bool          allow_open      = false;
83   bool          allow_create    = false;
84   bool          do_remap        = false;
85   uint32_t      flags           = 0;
86   char          *device         = NULL;
87   char          *target         = NULL;
88   unsigned long tmp             = 0;
89   
90   while (1) {
91     int         c = getopt_long(argc, argv, "+x:ocrf:d:t:", CMDLINE_OPTIONS, 0);
92     if (c==-1) break;
93
94     switch (c) {
95       case CMD_HELP     :  showHelp(1, argv[0]);
96       case CMD_VERSION  :  showVersion();
97       case 'x'          :  xid = Evc_xidopt2xid(optarg, true);  break;
98       case 'o'          :  allow_open = true;                   break;
99       case 'c'          :  allow_create = true;                 break;
100       case 'r'          :  do_remap = true;                     break;
101       case 'd'          :  device = optarg;                     break;
102       case 't'          :  target = optarg;                     break;
103       case 'f'          :
104         if (!isNumberUnsigned(optarg, &tmp, false)) {
105           WRITE_MSG(2, "Invalid flags argument: '");
106           WRITE_STR(2, optarg);
107           WRITE_MSG(2, "'; try '--help' for more information\n");
108           return EXIT_FAILURE;
109         }
110         flags |= (uint32_t) tmp;
111         break;
112
113       default           :
114         WRITE_MSG(2, "Try '");
115         WRITE_STR(2, argv[0]);
116         WRITE_MSG(2, " --help' for more information.\n");
117         return EXIT_FAILURE;
118         break;
119     }
120   }
121
122   if (allow_open)       flags |= VC_DATTR_OPEN;
123   if (allow_create)     flags |= VC_DATTR_CREATE;
124   if (do_remap)         flags |= VC_DATTR_REMAP;
125
126   if (xid==VC_NOCTX)
127     WRITE_MSG(2, "No xid specified; try '--help' for more information\n");
128   else if (optind!=argc)
129     WRITE_MSG(2, "Unused argument(s); try '--help' for more information\n");
130   else if (vc_set_mapping(xid, device, target, flags)==-1)
131       perror("vc_set_mapping()");
132   else
133     return EXIT_SUCCESS;
134
135   return EXIT_FAILURE;
136 }