summaryrefslogtreecommitdiff
path: root/options.c
blob: 156bcbf4cb545d3d03a7c83d0801a3dd1bd49863 (plain)
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
/* Hurd unionfs
   Copyright (C) 2001, 2002, 2005, 2009 Free Software Foundation, Inc.
   Written by Moritz Schulte <moritz@duesseldorf.ccc.de>.

   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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
   USA.  */

/* Argument parsing.  */

#include <argp.h>
#include <error.h>

#include "options.h"
#include "ulfs.h"
#include "ncache.h"
#include "unionfs.h"
#include "node.h"
#include "version.h"
#include "pattern.h"
#include "stow.h"
#include "update.h"

/* This variable is set to a non-zero value after parsing of the
   startup options.  Whenever the argument parser is later called to
   modify the underlying filesystems of the root node, the root node
   is initialized accordingly directly by the parser.  */
static int parsing_startup_options_finished;

/* Argp options common to the runtime and startup parser.  */
static const struct argp_option argp_common_options[] =
  {
    { OPT_LONG_UNDERLYING, OPT_UNDERLYING, 0, 0,
      "add the underlying node to the unionfs" },
    { OPT_LONG_WRITABLE, OPT_WRITABLE, 0, 0,
      "specify the following filesystem as writable" },
    { OPT_LONG_DEBUG, OPT_DEBUG, 0, OPTION_HIDDEN,
      "send debugging messages to stderr" },
    { OPT_LONG_CACHE_SIZE, OPT_CACHE_SIZE, "SIZE", 0,
      "specify the maximum number of nodes in the cache" },
    { 0, 0, 0, 0, "Runtime options:", 1 },
    { OPT_LONG_STOW, OPT_STOW, "STOWDIR", 0,
      "stow given directory", 1},
    { OPT_LONG_PRIORITY, OPT_PRIORITY, "VALUE", 0,
      "Set the priority for the following filesystem to VALUE", 1},
    { OPT_LONG_PATTERN, OPT_PATTERN, "PATTERN", 0,
      "add only nodes of the underlying filesystem matching pattern", 1},
    { OPT_LONG_REMOVE, OPT_REMOVE, 0, 0,
      "remove the following filesystem", 1 },
    { OPT_LONG_ADD, OPT_ADD, 0, 0,
      "add the following filesystem (Default)", 1 },
    { 0 }
  };

/* Argp options only meaningful for startup parsing.  */
static const struct argp_option argp_startup_options[] =
  {
    { 0 }
  };

/* Argp parser function for the common options.  */
static error_t
argp_parse_common_options (int key, char *arg, struct argp_state *state)
{
  static int ulfs_flags = 0, ulfs_mode = 0, ulfs_modified = 0,
    ulfs_match = 0, ulfs_priority = 0;
  static struct patternlist ulfs_patternlist =
    {    
      .lock = PTHREAD_MUTEX_INITIALIZER,
      .head = NULL
    };
  error_t err = 0;

  switch (key)
    {
    case OPT_WRITABLE:		/* --writable  */
      ulfs_flags |= FLAG_ULFS_WRITABLE;
      break;

    case OPT_PRIORITY:		/* --priority */
      ulfs_priority = strtol (arg, NULL, 10);
      break;

    case OPT_DEBUG:		/* --debug  */
      unionfs_flags |= FLAG_UNIONFS_MODE_DEBUG;
      break;

    case OPT_CACHE_SIZE:	/* --cache-size  */
      ncache_size = strtol (arg, NULL, 10);
      break;

    case OPT_ADD:		/* --add */
      ulfs_mode = ULFS_MODE_ADD;
      break;

    case OPT_REMOVE:		/* --remove  */
      ulfs_mode = ULFS_MODE_REMOVE;
      break;

    case OPT_PATTERN:           /* --match  */
      ulfs_match = 1;
      patternlist_add (&ulfs_patternlist, arg);
      break;

    case OPT_STOW:		/* --stow */
      err = stow_diradd (arg, ulfs_flags, &ulfs_patternlist, ulfs_priority);
      if (err)
	argp_error (state, "stow_diradd");
      ulfs_modified = 1;
      ulfs_flags = ulfs_mode = ulfs_priority = 0;
      ulfs_match = 0;
      break;

    case OPT_UNDERLYING:	/* --underlying  */
    case ARGP_KEY_ARG:

      if (ulfs_mode == ULFS_MODE_REMOVE)
	{
	  err = ulfs_unregister (arg);
	  if (err == ENOENT)
	    /* It is not a fatal error, when the user tries to remove
	       a filesystem, which is not used by unionfs.  */
	    err = 0;
	}
      else
	err = ulfs_register (arg, ulfs_flags, ulfs_priority);
      if (err)
	argp_error (state, "ulfs_register");
      ulfs_modified = 1;
      ulfs_flags = ulfs_mode = ulfs_priority = 0;
      ulfs_match = 0;
      break;

    case ARGP_KEY_END:
      ulfs_flags = ulfs_mode = 0;
      if (ulfs_modified && parsing_startup_options_finished)
	{
	  root_update_schedule ();
	}
      else
	{
	  ncache_reset ();
	}
      ulfs_modified = 0;

      if (! parsing_startup_options_finished)
	parsing_startup_options_finished = 1;
      break;

    default:
      err = ARGP_ERR_UNKNOWN;
      break;
    }

  return err;
}

/* Argp parser function for the startup oprtions.  */
static error_t
argp_parse_startup_options (int key, char *arg, struct argp_state *state)
{
  error_t err = 0;

  switch (key)
    {
    default:
      err = ARGP_ERR_UNKNOWN;
      break;
    }
  
  return err;
}

/* Argp parser for only the common options.  */
static const struct argp argp_parser_common_options =
  { argp_common_options, argp_parse_common_options, 0, 0, 0 };

/* Argp parser for only the startup options.  */
static struct argp argp_parser_startup_options =
  { argp_startup_options, argp_parse_startup_options, 0, 0, 0 };

/* The children parser for runtime arguments.  */
static const struct argp_child argp_children_runtime[] =
  {
    { &argp_parser_common_options },
    { &netfs_std_runtime_argp },
    { 0 }
  };

/* The children parser for startup arguments.  */
const struct argp_child argp_children_startup[] =
  {
    { &argp_parser_startup_options },
    { &argp_parser_common_options },
    { &netfs_std_startup_argp },
    { 0 }
  };

const char *argp_program_version = STANDARD_HURD_VERSION (unionfs);

#define ARGS_DOC "FILESYSTEMS ..."
#define DOC      "Hurd unionfs server"

/* The final argp parser for runtime arguments.  */
struct argp argp_runtime =
  { 0, 0, 0, 0, argp_children_runtime };

/* The final argp parser for startup arguments.  */
struct argp argp_startup =
  { 0, 0, ARGS_DOC, DOC, argp_children_startup };