summaryrefslogtreecommitdiff
blob: c1dfb909a89caba0adc435fac81bbf3c008f5144 (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
#!/sbin/runscript

opts="${opts} attach"
PIDFILE=/var/run/boinc.pid

depend() {
	# we can use dns and net, but we can also in most cases live without them
	use dns net
}

create_work_directory() {
	if [ ! -d "${RUNTIMEDIR}" ]; then
		einfo "Directory ${RUNTIMEDIR} not existing, creating now."
		mkdir "${RUNTIMEDIR}"
		chown "${USER}:${GROUP}" "${RUNTIMEDIR}"
		if [ ! -d "${RUNTIMEDIR}" ]; then
			eeror "Directory ${RUNTIMEDIR} could not be created!"
			return 1
		fi
		ln -s /etc/ssl/certs/ca-certificates.crt "${RUNTIMEDIR}"/ca-bundle.crt
	fi
}

generate_logs() {
	if [ ! -f "${LOGFILE}" ]; then
		einfo "No ${LOGFILE} around. Creating new..."
		einfo "For good log rotation is great tool app-admin/logrotate"
		touch "${LOGFILE}"
		chown "${USER}:${GROUP}" "${LOGFILE}"
	fi
}

cuda_check() {
	if [ -f /opt/cuda/lib/libcudart.so ]; then
		# symlink wont harm :]
		ln -snf /opt/cuda/lib/libcudart.so "${RUNTIMEDIR}"/libcudart.so
	fi
}

start() {
	ebegin "Starting BOINC"

	create_work_directory
	cuda_check

	cd "${RUNTIMEDIR}"

	if [ ! -f lockfile ]; then
		einfo "File $RUNTIMEDIR/lockfile does not exist, assuming first run."
		einfo "You need to setup an account on the BOINC project homepage beforehand!"
		einfo "Go to http://boinc.berkeley.edu/ and locate your project."
		einfo "Then either run /etc/init.d/boinc attach or connect with a gui client"
		einfo "and attach to a project with that."
		echo
		ewarn "Note that for attaching to some project you need your network up and running."
		ewarn "network is needed only for jobs fetching afterwards"
	fi

	if [ "${ALLOW_REMOTE_RPC}" = "yes" ]; then
		ARGS="${ARGS} --allow_remote_gui_rpc"
	fi

	if [ -n "${RC_UNAME}" ]; then
		PARAMS="--background --stdout '${LOGFILE}' --stderr '${LOGFILE}' -- ${ARGS}"
	else
		PARAMS="-- ${ARGS} >> '${LOGFILE}' 2>&1"
	fi

	generate_logs

	# sys-apps/util-linux (setup scheduling policy if specified, otherwise blank out
    if [ "${SCHED_PARAM}" = "" ]; then
        CHRT=""
    else
    	CHRT="/usr/bin/chrt ${SCHED_PARAM}"
    fi

	eval ${CHRT} start-stop-daemon \
		--start --quiet --chdir "${RUNTIMEDIR}" \
		--make-pidfile \
		--pidfile "${PIDFILE}" \
		--chuid "${USER}:${GROUP}" \
		--nicelevel "${NICELEVEL}" \
		--exec "${BOINCBIN}" ${PARAMS}

	RESULT=$?

	if [ "${CPU_SHARE}" ] && [ -d /sys/kernel/uids ]; then
		BUID="$(id -u "${USER}")"
		# It might take a moment for start-stop-daemon to chuid
		[ -d /sys/kernel/uids/"${BUID}" ] || sleep 5 # 5 was working always here
		if [ -w /sys/kernel/uids/"${BUID}"/cpu_share ]; then
			echo "${CPU_SHARE}" > /sys/kernel/uids/"${BUID}"/cpu_share
		fi							      
	fi	  

	eend ${RESULT}
}

attach() {
	local password args url key
	local was_started=true

	printf "    Enter the Project URL: "
	read url
	printf "    Enter your Account Key: "
	read key

	password=$(cat "${RUNTIMEDIR}/gui_rpc_auth.cfg")
	args="--project_attach ${url} ${key}"

	if ! service_started; then
		was_started=false
		"${RC_SERVICE}" start
	fi

	ebegin "Attaching to project"
		boinccmd --host localhost --passwd ${password} ${args}
	eend $?

	unset password args url key

	sleep 10
	tail "${LOGFILE}"

	[[ ${was_started} = "false" ]] && "${RC_SERVICE}" stop
}

stop() {
	ebegin "Stopping BOINC"
	start-stop-daemon --stop --retry 3 --quiet --exec "${BOINCBIN}"
	rm -f "${PIDFILE}"
	eend $?
}

restart() {
	stop
	sleep 3
	start
}