summaryrefslogtreecommitdiffstats
path: root/utils/lockd/lockd.c
blob: 49183d2d9a7dc4adae7a7789bdc4cffcdb3f2e10 (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
/*
 * lockd
 *
 * This is the user level part of lockd. This is very primitive, because
 * all the work is now done in the kernel module.
 *
 */

#include "config.h"

#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include "nfslib.h"

static void	usage(const char *);

int
main(int argc, char **argv)
{
	int error;

	if (argc > 1)
		usage (argv [0]);

	if (chdir(NFS_STATEDIR)) {
		fprintf(stderr, "%s: chdir(%s) failed: %s\n",
			argv [0], NFS_STATEDIR, strerror(errno));
		exit(1);
	}

	if ((error = lockdsvc()) < 0) {
		if (errno == EINVAL)
			/* Ignore EINVAL since kernel may start
			   lockd automatically. */
			error = 0;
		else
			perror("lockdsvc");
	}

	return (error != 0);
}

static void
usage(const char *prog)
{
	fprintf(stderr, "usage:\n%s\n", prog);
	exit(2);
}