/usr/share/pyshared/jsb/lib/boot.py is in jsonbot 0.84.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 | # jsb/boot.py
#
#
""" admin related data and functions. """
## jsb imports
from jsb.utils.generic import checkpermissions, isdebian, botuser
from jsb.lib.persist import Persist
from jsb.lib.aliases import savealiases
from jsb.utils.exception import handle_exception
from jsb.lib.datadir import makedirs, getdatadir
from jsb.lib.config import Config, getmainconfig
from jsb.lib.jsbimport import _import
from jsb.utils.lazydict import LazyDict
from jsb.memcached import startmcdaemon
## basic imports
import logging
import os
import sys
import types
import copy
## paths
sys.path.insert(0, os.getcwd())
sys.path.insert(0, os.getcwd() + os.sep + '..')
## defines
try:
import waveapi
ongae = True
logging.warn("GAE detected")
plugin_packages = ['jsb.plugs.core', 'jsb.plugs.common', 'jsb.plugs.gae', 'jsb.plugs.wave', 'myplugs']
except ImportError:
ongae = False
plugin_packages = ['jsb.plugs.core', 'jsb.plugs.common', 'jsb.plugs.socket', 'myplugs']
default_plugins = ['jsb.plugs.core.admin', 'jsb.plugs.core.dispatch', 'jsb.plugs.core.plug', 'jsb.lib.periodical']
logging.info("default plugins are %s" % str(default_plugins))
loaded = False
cmndtable = None
pluginlist = None
callbacktable = None
retable = None
cmndperms = None
shorttable = None
timestamps = None
plugwhitelist = None
plugblacklist = None
cpy = copy.deepcopy
## scandir function
def scandir(d, dbenable=False):
from jsb.lib.plugins import plugs
changed = []
try:
changed = checktimestamps(d, dbenable)
mods = []
if changed:
logging.debug("files changed %s" % str(changed))
for plugfile in changed:
if not dbenable and os.sep + 'db' in plugfile: logging.warn("db not enabled .. skipping %s" % plugfile) ; continue
if ongae and 'socket' in plugfile: logging.warn("on GAE .. skipping %s" % plugfile) ; continue
if not ongae and ('gae' in plugfile or 'wave' in plugfile): logging.warn("not on GAE .. skipping %s" % plugfile) ; continue
return changed
except Exception, ex: logging.error("boot - can't read %s dir." % d) ; handle_exception()
if changed: logging.debug("%s files changed -=- %s" % (len(changed), str(changed)))
return changed
## boot function
def boot(ddir=None, force=False, encoding="utf-8", umask=None, saveperms=True, fast=False, clear=False, loadall=False):
""" initialize the bot. """
global plugin_packages
if not ongae:
try:
if os.getuid() == 0:
print "don't run the bot as root"
os._exit(1)
except AttributeError: pass
logging.warn("starting!")
from jsb.lib.datadir import getdatadir, setdatadir
if ddir: setdatadir(ddir)
origdir = ddir
ddir = ddir or getdatadir()
if not ddir: logging.error("can't determine datadir to boot from") ; raise Exception("can't determine datadir")
if not ddir in sys.path: sys.path.append(ddir)
makedirs(ddir)
if os.path.isdir("/var/run/jsb") and botuser() == "jsb": rundir = "/var/run/jsb"
else: rundir = ddir + os.sep + "run"
try:
k = open(rundir + os.sep + 'jsb.pid','w')
k.write(str(os.getpid()))
k.close()
except IOError: pass
try:
if not ongae:
reload(sys)
sys.setdefaultencoding(encoding)
except (AttributeError, IOError): pass
if not ongae:
try:
if not umask: checkpermissions(getdatadir(), 0700)
else: checkpermissions(getdatadir(), umask)
except: handle_exception()
from jsb.lib.plugins import plugs
global loaded
global cmndtable
global retable
global pluginlist
global callbacktable
global shorttable
global cmndperms
global timestamps
global plugwhitelist
global plugblacklist
if not retable: retable = Persist(rundir + os.sep + 'retable')
if clear: retable.data = {}
if not cmndtable: cmndtable = Persist(rundir + os.sep + 'cmndtable')
if clear: cmndtable.data = {}
if not pluginlist: pluginlist = Persist(rundir + os.sep + 'pluginlist')
if clear: pluginlist.data = []
if not callbacktable: callbacktable = Persist(rundir + os.sep + 'callbacktable')
if clear: callbacktable.data = {}
if not shorttable: shorttable = Persist(rundir + os.sep + 'shorttable')
if clear: shorttable.data = {}
if not timestamps: timestamps = Persist(rundir + os.sep + 'timestamps')
#if clear: timestamps.data = {}
if not plugwhitelist: plugwhitelist = Persist(rundir + os.sep + 'plugwhitelist')
if not plugwhitelist.data: plugwhitelist.data = []
if not plugblacklist: plugblacklist = Persist(rundir + os.sep + 'plugblacklist')
if not plugblacklist.data: plugblacklist.data = []
if not cmndperms: cmndperms = Config('cmndperms', ddir=ddir)
changed = []
gotlocal = False
dosave = clear or False
maincfg = getmainconfig(ddir=ddir)
logging.warn("mainconfig used is %s" % maincfg.cfile)
if os.path.isdir('jsb'):
gotlocal = True
packages = find_packages("jsb" + os.sep + "plugs")
if ongae: pluglist = [x for x in packages if not 'socket' in x and not 'db' in x]
else: pluglist = [x for x in packages if not 'gae' in x and not 'wave' in x and not 'db' in x]
for p in pluglist:
if p not in plugin_packages: plugin_packages.append(p)
for plug in default_plugins:
plugs.reload(plug, showerror=True, force=True)
changed = scandir(getdatadir() + os.sep + 'myplugs', dbenable=maincfg.dbenable)
if changed:
logging.debug("myplugs has changed -=- %s" % str(changed))
for plugfile in changed:
try: plugs.reloadfile(plugfile, force=True)
except Exception, ex: handle_exception()
dosave = True
configchanges = checkconfig()
if configchanges:
logging.info("there are configuration changes: %s" % str(configchanges))
for f in configchanges:
if 'mainconfig' in f: force = True ; dosave = True
if os.path.isdir('jsb'):
corechanges = scandir("jsb" + os.sep + "plugs", dbenable=maincfg.dbenable)
if corechanges:
logging.debug("core changed -=- %s" % str(corechanges))
for plugfile in corechanges:
if not maincfg.dbenable and "db" in plugfile: continue
try: plugs.reloadfile(plugfile, force=True)
except Exception, ex: handle_exception()
dosave = True
if not ongae and maincfg.dbenable:
plugin_packages.append("jsb.plugs.db")
try:
from jsb.db import getmaindb
from jsb.db.tables import tablestxt
db = getmaindb()
if db: db.define(tablestxt)
except Exception, ex: logging.warn("could not initialize database %s" % str(ex))
else:
logging.warn("db not enabled, set dbenable = 1 in %s to enable" % getmainconfig().cfile)
try: plugin_packages.remove("jsb.plugs.db")
except ValueError: pass
if force or dosave or not cmndtable.data or len(cmndtable.data) < 100:
logging.debug("using target %s" % str(plugin_packages))
plugs.loadall(plugin_packages, force=True)
savecmndtable(saveperms=saveperms)
savepluginlist()
savecallbacktable()
savealiases()
logging.warn("ready")
## filestamps stuff
def checkconfig():
if ongae: return []
changed = []
d = getdatadir() + os.sep + "config"
for f in os.listdir(d):
if os.path.isdir(d + os.sep + f):
dname = d + os.sep + f
changed.extend(checktimestamps(d + os.sep + f))
continue
m = d + os.sep + f
if os.path.isdir(m): continue
if "__init__" in f: continue
global timestamps
try:
t = os.path.getmtime(m)
if t > timestamps.data[m]: changed.append(m) ; timestamps.data[m] = t ;
except KeyError: timestamps.data[m] = os.path.getmtime(m) ; changed.append(m)
if changed: timestamps.save()
return changed
def checktimestamps(d=None, dbenable=False):
if ongae: return []
changed = []
for f in os.listdir(d):
if os.path.isdir(d + os.sep + f):
if f.startswith("."): logging.warn("skipping %s" % f) ; continue
dname = d + os.sep + f
if not dbenable and 'db' in dname: continue
if ongae and 'socket' in dname: logging.info("on GAE .. skipping %s" % dname) ; continue
if not ongae and ('gae' in dname or 'wave' in dname): logging.info("not on GAE .. skipping %s" % dname) ; continue
splitted = dname.split(os.sep)
target = []
for s in splitted[::-1]:
target.append(s)
if 'jsb' in s: break
elif 'myplugs' in s: break
package = ".".join(target[::-1])
if not "config" in dname and package not in plugin_packages: logging.warn("adding %s to plugin_packages" % package) ; plugin_packages.append(package)
changed.extend(checktimestamps(d + os.sep + f))
if not f.endswith(".py"): continue
m = d + os.sep + f
global timestamps
try:
t = os.path.getmtime(m)
if t > timestamps.data[m]: changed.append(m) ; timestamps.data[m] = t ;
except KeyError: timestamps.data[m] = os.path.getmtime(m) ; changed.append(m)
if changed: timestamps.save()
return changed
def find_packages(d=None):
packages = []
for f in os.listdir(d):
if os.path.isdir(d + os.sep + f):
if f.startswith("."): logging.warn("skipping %s" % f) ; continue
dname = d + os.sep + f
splitted = dname.split(os.sep)
target = []
for s in splitted[::-1]:
target.append(s)
if 'jsb' in s: break
elif 'myplugs' in s: break
package = ".".join(target[::-1])
if package not in plugin_packages: logging.info("adding %s to plugin_packages" % package) ; packages.append(package)
packages.extend(find_packages(d + os.sep + f))
return packages
## commands related commands
def savecmndtable(modname=None, saveperms=True):
""" save command -> plugin list to db backend. """
global cmndtable
if not cmndtable.data: cmndtable.data = {}
if modname: target = LazyDict(cmndtable.data)
else: target = LazyDict()
global shorttable
if not shorttable.data: shorttable.data = {}
if modname: short = LazyDict(shorttable.data)
else: short = LazyDict()
global cmndperms
from jsb.lib.commands import cmnds
assert cmnds
for cmndname, c in cmnds.iteritems():
if modname and c.modname != modname or cmndname == "subs": continue
if cmndname and c:
target[cmndname] = c.modname
cmndperms[cmndname] = c.perms
try:
s = cmndname.split("-")[1]
if not target.has_key(s):
if not short.has_key(s): short[s] = [cmndname, ]
if cmndname not in short[s]: short[s].append(cmndname)
except (ValueError, IndexError): pass
logging.warn("saving command table")
assert cmndtable
assert target
cmndtable.data = target
cmndtable.save()
logging.warn("saving short table")
assert shorttable
assert short
shorttable.data = short
shorttable.save()
logging.warn("saving RE table")
for command in cmnds.regex:
retable.data[command.regex] = command.modname
assert retable
retable.save()
if saveperms:
logging.warn("saving command perms")
cmndperms.save()
def removecmnds(modname):
""" remove commands belonging to modname form cmndtable. """
global cmndtable
assert cmndtable
from jsb.lib.commands import cmnds
assert cmnds
for cmndname, c in cmnds.iteritems():
if c.modname == modname: del cmndtable.data[cmndname]
cmndtable.save()
def getcmndtable():
""" save command -> plugin list to db backend. """
global cmndtable
if not cmndtable: boot()
return cmndtable.data
## callbacks related commands
def savecallbacktable(modname=None):
""" save command -> plugin list to db backend. """
if modname: logging.warn("boot - module name is %s" % modname)
global callbacktable
assert callbacktable
if not callbacktable.data: callbacktable.data = {}
if modname: target = LazyDict(callbacktable.data)
else: target = LazyDict()
from jsb.lib.callbacks import first_callbacks, callbacks, last_callbacks, remote_callbacks
for cb in [first_callbacks, callbacks, last_callbacks, remote_callbacks]:
for type, cbs in cb.cbs.iteritems():
for c in cbs:
if modname and c.modname != modname: continue
if not target.has_key(type): target[type] = []
if not c.modname in target[type]: target[type].append(c.modname)
logging.warn("saving callback table")
assert callbacktable
assert target
callbacktable.data = target
callbacktable.save()
def removecallbacks(modname):
""" remove callbacks belonging to modname form cmndtable. """
global callbacktable
assert callbacktable
from jsb.lib.callbacks import first_callbacks, callbacks, last_callbacks, remote_callbacks
for cb in [first_callbacks, callbacks, last_callbacks, remote_callbacks]:
for type, cbs in cb.cbs.iteritems():
for c in cbs:
if not c.modname == modname: continue
if not callbacktable.data.has_key(type): callbacktable.data[type] = []
if c.modname in callbacktable.data[type]: callbacktable.data[type].remove(c.modname)
logging.warn("saving callback table")
assert callbacktable
callbacktable.save()
def getcallbacktable():
""" save command -> plugin list to db backend. """
global callbacktable
if not callbacktable: boot()
return callbacktable.data
## plugin list related commands
def savepluginlist(modname=None):
""" save a list of available plugins to db backend. """
global pluginlist
if not pluginlist.data: pluginlist.data = []
if modname: target = cpy(pluginlist.data)
else: target = []
from jsb.lib.commands import cmnds
assert cmnds
for cmndname, c in cmnds.iteritems():
if modname and c.modname != modname: continue
if c and not c.plugname: logging.info("boot - not adding %s to pluginlist" % cmndname) ; continue
if c and c.plugname not in target and c.enable: target.append(c.plugname)
assert target
target.sort()
logging.warn("saving plugin list")
assert pluginlist
pluginlist.data = target
pluginlist.save()
def remove_plugin(modname):
removecmnds(modname)
removecallbacks(modname)
global pluginlist
try: pluginlist.data.remove(modname.split(".")[-1]) ; pluginlist.save()
except: pass
def clear_tables():
global cmndtable
global callbacktable
global pluginlist
cmndtable.data = {} ; cmndtable.save()
callbacktable.data = {} ; callbacktable.save()
pluginlist.data = [] ; pluginlist.save()
def getpluginlist():
""" get the plugin list. """
global pluginlist
if not pluginlist: boot()
l = plugwhitelist.data or pluginlist.data
result = []
denied = []
for plug in plugblacklist.data:
denied.append(plug.split(".")[-1])
for plug in l:
if plug not in denied: result.append(plug)
return result
## update_mod command
def update_mod(modname):
""" update the tables with new module. """
savecallbacktable(modname)
savecmndtable(modname, saveperms=False)
savepluginlist(modname)
def whatcommands(plug):
tbl = getcmndtable()
result = []
for cmnd, mod in tbl.iteritems():
if not mod: continue
if plug in mod:
result.append(cmnd)
return result
def getcmndperms():
return cmndperms
def plugenable(mod):
if plugwhitelist.data and not mod in plugwhitelist.data: plugwhitelist.data.append(mod) ; plugwhtelist.save() ; return
if mod in plugblacklist.data: plugblacklist.data.remove(mod) ; plugblacklist.save()
def plugdisable(mod):
if plugwhitelist.data and mod in plugwhitelist.data: plugwhitelist.data.remove(mod) ; plugwhtelist.save() ; return
if not mod in plugblacklist.data: plugblacklist.data.append(mod) ; plugblacklist.save()
def size():
global cmndtable
global pluginlist
global callbacktable
global cmndperms
global timestamps
global plugwhitelist
global plugblacklist
return "cmndtable: %s - pluginlist: %s - callbacks: %s - timestamps: %s - whitelist: %s - blacklist: %s" % (cmndtable.size(), pluginlist.size(), callbacktable.size(), timestamps.size(), plugwhitelist.size(), plugblacklist.size())
|