| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058 |
- /*
- * Copyright (c) 2005 MontaVista Software, Inc.
- * Copyright (c) 2006-2009 Red Hat, Inc.
- *
- * All rights reserved.
- *
- * Author: Steven Dake (sdake@redhat.com)
- * This software licensed under BSD license, the text of which follows:
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * - Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * - Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- * - Neither the name of the MontaVista Software, Inc. nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include <config.h>
- #include <assert.h>
- #include <pthread.h>
- #include <sys/mman.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <sys/socket.h>
- #include <netdb.h>
- #include <sys/un.h>
- #include <sys/ioctl.h>
- #include <sys/param.h>
- #include <netinet/in.h>
- #include <arpa/inet.h>
- #include <unistd.h>
- #include <fcntl.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <errno.h>
- #include <sched.h>
- #include <time.h>
- #include <sys/time.h>
- #include <sys/poll.h>
- #include <corosync/sq.h>
- #include <corosync/list.h>
- #include <corosync/hdb.h>
- #include <corosync/swab.h>
- #include <corosync/totem/coropoll.h>
- #include "totemnet.h"
- #include "wthread.h"
- #include "crypto.h"
- #ifdef HAVE_LIBNSS
- #include <nss.h>
- #include <pk11pub.h>
- #include <pkcs11.h>
- #include <prerror.h>
- #endif
- #ifndef MSG_NOSIGNAL
- #define MSG_NOSIGNAL 0
- #endif
- #define MCAST_SOCKET_BUFFER_SIZE (TRANSMITS_ALLOWED * FRAME_SIZE_MAX)
- #define NETIF_STATE_REPORT_UP 1
- #define NETIF_STATE_REPORT_DOWN 2
- #define BIND_STATE_UNBOUND 0
- #define BIND_STATE_REGULAR 1
- #define BIND_STATE_LOOPBACK 2
- #define HMAC_HASH_SIZE 20
- struct security_header {
- unsigned char hash_digest[HMAC_HASH_SIZE]; /* The hash *MUST* be first in the data structure */
- unsigned char salt[16]; /* random number */
- char msg[0];
- } __attribute__((packed));
- struct totemnet_mcast_thread_state {
- unsigned char iobuf[FRAME_SIZE_MAX];
- prng_state prng_state;
- };
- struct totemnet_socket {
- int mcast_recv;
- int mcast_send;
- int token;
- };
- struct totemnet_instance {
- hmac_state totemnet_hmac_state;
- prng_state totemnet_prng_state;
- #ifdef HAVE_LIBNSS
- PK11SymKey *nss_sym_key;
- PK11SymKey *nss_sym_key_sign;
- #endif
- unsigned char totemnet_private_key[1024];
- unsigned int totemnet_private_key_len;
- hdb_handle_t totemnet_poll_handle;
- struct totem_interface *totem_interface;
- int netif_state_report;
- int netif_bind_state;
- struct worker_thread_group worker_thread_group;
- void *context;
- void (*totemnet_deliver_fn) (
- void *context,
- const void *msg,
- unsigned int msg_len);
- void (*totemnet_iface_change_fn) (
- void *context,
- const struct totem_ip_address *iface_address);
- /*
- * Function and data used to log messages
- */
- int totemnet_log_level_security;
- int totemnet_log_level_error;
- int totemnet_log_level_warning;
- int totemnet_log_level_notice;
- int totemnet_log_level_debug;
- int totemnet_subsys_id;
- void (*totemnet_log_printf) (int subsys,
- const char *function,
- const char *file,
- int line, unsigned int level,
- unsigned int tag,
- const char *format,
- ...)__attribute__((format(printf, 7, 8)));
- hdb_handle_t handle;
- char iov_buffer[FRAME_SIZE_MAX];
- char iov_buffer_flush[FRAME_SIZE_MAX];
- struct iovec totemnet_iov_recv;
- struct iovec totemnet_iov_recv_flush;
- struct totemnet_socket totemnet_sockets;
- struct totem_ip_address mcast_address;
- int stats_sent;
- int stats_recv;
- int stats_delv;
- int stats_remcasts;
- int stats_orf_token;
- struct timeval stats_tv_start;
- struct totem_ip_address my_id;
- int firstrun;
- poll_timer_handle timer_netif_check_timeout;
- unsigned int my_memb_entries;
- int flushing;
- struct totem_config *totem_config;
- struct totem_ip_address token_target;
- };
- struct work_item {
- const void *msg;
- unsigned int msg_len;
- struct totemnet_instance *instance;
- };
- static void netif_down_check (struct totemnet_instance *instance);
- static int totemnet_build_sockets (
- struct totemnet_instance *instance,
- struct totem_ip_address *bindnet_address,
- struct totem_ip_address *mcastaddress,
- struct totemnet_socket *sockets,
- struct totem_ip_address *bound_to);
- static struct totem_ip_address localhost;
- DECLARE_HDB_DATABASE (totemnet_instance_database,NULL);
- static void totemnet_instance_initialize (struct totemnet_instance *instance)
- {
- memset (instance, 0, sizeof (struct totemnet_instance));
- instance->netif_state_report = NETIF_STATE_REPORT_UP | NETIF_STATE_REPORT_DOWN;
- instance->totemnet_iov_recv.iov_base = instance->iov_buffer;
- instance->totemnet_iov_recv.iov_len = FRAME_SIZE_MAX; //sizeof (instance->iov_buffer);
- instance->totemnet_iov_recv_flush.iov_base = instance->iov_buffer_flush;
- instance->totemnet_iov_recv_flush.iov_len = FRAME_SIZE_MAX; //sizeof (instance->iov_buffer);
- /*
- * There is always atleast 1 processor
- */
- instance->my_memb_entries = 1;
- }
- #define log_printf(level, format, args...) \
- do { \
- instance->totemnet_log_printf (instance->totemnet_subsys_id, \
- __FUNCTION__, __FILE__, __LINE__, \
- level, 0, (const char *)format, ##args); \
- } while (0);
- static int authenticate_and_decrypt_sober (
- struct totemnet_instance *instance,
- struct iovec *iov,
- unsigned int iov_len)
- {
- unsigned char keys[48];
- struct security_header *header = iov[0].iov_base;
- prng_state keygen_prng_state;
- prng_state stream_prng_state;
- unsigned char *hmac_key = &keys[32];
- unsigned char *cipher_key = &keys[16];
- unsigned char *initial_vector = &keys[0];
- unsigned char digest_comparison[HMAC_HASH_SIZE];
- unsigned long len;
- /*
- * Generate MAC, CIPHER, IV keys from private key
- */
- memset (keys, 0, sizeof (keys));
- sober128_start (&keygen_prng_state);
- sober128_add_entropy (instance->totemnet_private_key,
- instance->totemnet_private_key_len, &keygen_prng_state);
- sober128_add_entropy (header->salt, sizeof (header->salt), &keygen_prng_state);
- sober128_read (keys, sizeof (keys), &keygen_prng_state);
- /*
- * Setup stream cipher
- */
- sober128_start (&stream_prng_state);
- sober128_add_entropy (cipher_key, 16, &stream_prng_state);
- sober128_add_entropy (initial_vector, 16, &stream_prng_state);
- /*
- * Authenticate contents of message
- */
- hmac_init (&instance->totemnet_hmac_state, DIGEST_SHA1, hmac_key, 16);
- hmac_process (&instance->totemnet_hmac_state,
- (unsigned char *)iov->iov_base + HMAC_HASH_SIZE,
- iov->iov_len - HMAC_HASH_SIZE);
- len = hash_descriptor[DIGEST_SHA1]->hashsize;
- assert (HMAC_HASH_SIZE >= len);
- hmac_done (&instance->totemnet_hmac_state, digest_comparison, &len);
- if (memcmp (digest_comparison, header->hash_digest, len) != 0) {
- return (-1);
- }
- /*
- * Decrypt the contents of the message with the cipher key
- */
- sober128_read ((unsigned char*)iov->iov_base +
- sizeof (struct security_header),
- iov->iov_len - sizeof (struct security_header),
- &stream_prng_state);
- return (0);
- }
- static void init_sober_crypto(
- struct totemnet_instance *instance)
- {
- log_printf(instance->totemnet_log_level_notice,
- "Initializing transmit/receive security: libtomcrypt SOBER128/SHA1HMAC (mode 0).\n");
- rng_make_prng (128, PRNG_SOBER, &instance->totemnet_prng_state, NULL);
- }
- #ifdef HAVE_LIBNSS
- static unsigned char *copy_from_iovec(
- const struct iovec *iov,
- unsigned int iov_len,
- size_t *buf_size)
- {
- int i;
- size_t bufptr;
- size_t buflen = 0;
- unsigned char *newbuf;
- for (i=0; i<iov_len; i++)
- buflen += iov[i].iov_len;
- newbuf = malloc(buflen);
- if (!newbuf)
- return NULL;
- bufptr=0;
- for (i=0; i<iov_len; i++) {
- memcpy(newbuf+bufptr, iov[i].iov_base, iov[i].iov_len);
- bufptr += iov[i].iov_len;
- }
- *buf_size = buflen;
- return newbuf;
- }
- static void copy_to_iovec(
- struct iovec *iov,
- unsigned int iov_len,
- const unsigned char *buf,
- size_t buf_size)
- {
- int i;
- size_t copylen;
- size_t bufptr = 0;
- bufptr=0;
- for (i=0; i<iov_len; i++) {
- copylen = iov[i].iov_len;
- if (bufptr + copylen > buf_size) {
- copylen = buf_size - bufptr;
- }
- memcpy(iov[i].iov_base, buf+bufptr, copylen);
- bufptr += copylen;
- if (iov[i].iov_len != copylen) {
- iov[i].iov_len = copylen;
- return;
- }
- }
- }
- static void init_nss_crypto(
- struct totemnet_instance *instance)
- {
- PK11SlotInfo* aes_slot = NULL;
- PK11SlotInfo* sha1_slot = NULL;
- SECItem key_item;
- SECStatus rv;
- log_printf(instance->totemnet_log_level_notice,
- "Initializing transmit/receive security: NSS AES128CBC/SHA1HMAC (mode 1).\n");
- rv = NSS_NoDB_Init(".");
- if (rv != SECSuccess)
- {
- log_printf(instance->totemnet_log_level_security, "NSS initialization failed (err %d)\n",
- PR_GetError());
- goto out;
- }
- aes_slot = PK11_GetBestSlot(instance->totem_config->crypto_crypt_type, NULL);
- if (aes_slot == NULL)
- {
- log_printf(instance->totemnet_log_level_security, "Unable to find security slot (err %d)\n",
- PR_GetError());
- goto out;
- }
- sha1_slot = PK11_GetBestSlot(CKM_SHA_1_HMAC, NULL);
- if (sha1_slot == NULL)
- {
- log_printf(instance->totemnet_log_level_security, "Unable to find security slot (err %d)\n",
- PR_GetError());
- goto out;
- }
- /*
- * Make the private key into a SymKey that we can use
- */
- key_item.type = siBuffer;
- key_item.data = instance->totem_config->private_key;
- key_item.len = 32; /* Use 128 bits */
- instance->nss_sym_key = PK11_ImportSymKey(aes_slot,
- instance->totem_config->crypto_crypt_type,
- PK11_OriginUnwrap, CKA_ENCRYPT|CKA_DECRYPT,
- &key_item, NULL);
- if (instance->nss_sym_key == NULL)
- {
- log_printf(instance->totemnet_log_level_security, "Failure to import key into NSS (err %d)\n",
- PR_GetError());
- goto out;
- }
- instance->nss_sym_key_sign = PK11_ImportSymKey(sha1_slot,
- CKM_SHA_1_HMAC,
- PK11_OriginUnwrap, CKA_SIGN,
- &key_item, NULL);
- if (instance->nss_sym_key_sign == NULL) {
- log_printf(instance->totemnet_log_level_security, "Failure to import key into NSS (err %d)\n",
- PR_GetError());
- goto out;
- }
- out:
- return;
- }
- static int encrypt_and_sign_nss (
- struct totemnet_instance *instance,
- unsigned char *buf,
- size_t *buf_len,
- const struct iovec *iovec,
- unsigned int iov_len)
- {
- PK11Context* enc_context = NULL;
- SECStatus rv1, rv2;
- int tmp1_outlen;
- unsigned int tmp2_outlen;
- unsigned char *inbuf;
- unsigned char *data;
- unsigned char *outdata;
- size_t datalen;
- SECItem no_params;
- SECItem iv_item;
- struct security_header *header;
- SECItem *nss_sec_param;
- unsigned char nss_iv_data[16];
- SECStatus rv;
- no_params.type = siBuffer;
- no_params.data = 0;
- no_params.len = 0;
- tmp1_outlen = tmp2_outlen = 0;
- inbuf = copy_from_iovec(iovec, iov_len, &datalen);
- if (!inbuf) {
- log_printf(instance->totemnet_log_level_security, "malloc error copying buffer from iovec\n");
- return -1;
- }
- data = inbuf + sizeof (struct security_header);
- datalen -= sizeof (struct security_header);
- outdata = buf + sizeof (struct security_header);
- header = (struct security_header *)buf;
- rv = PK11_GenerateRandom (
- nss_iv_data,
- sizeof (nss_iv_data));
- if (rv != SECSuccess) {
- log_printf(instance->totemnet_log_level_security,
- "Failure to generate a random number %d\n",
- PR_GetError());
- }
- memcpy(header->salt, nss_iv_data, sizeof(nss_iv_data));
- iv_item.type = siBuffer;
- iv_item.data = nss_iv_data;
- iv_item.len = sizeof (nss_iv_data);
- nss_sec_param = PK11_ParamFromIV (
- instance->totem_config->crypto_crypt_type,
- &iv_item);
- if (nss_sec_param == NULL) {
- log_printf(instance->totemnet_log_level_security,
- "Failure to set up PKCS11 param (err %d)\n",
- PR_GetError());
- goto out;
- }
- /*
- * Create cipher context for encryption
- */
- enc_context = PK11_CreateContextBySymKey (
- instance->totem_config->crypto_crypt_type,
- CKA_ENCRYPT,
- instance->nss_sym_key,
- nss_sec_param);
- if (!enc_context) {
- char err[1024];
- PR_GetErrorText(err);
- err[PR_GetErrorTextLength()] = 0;
- log_printf(instance->totemnet_log_level_security,
- "PK11_CreateContext failed (encrypt) crypt_type=%d (err %d): %s\n",
- instance->totem_config->crypto_crypt_type,
- PR_GetError(), err);
- return -1;
- }
- rv1 = PK11_CipherOp(enc_context, outdata,
- &tmp1_outlen, FRAME_SIZE_MAX - sizeof(struct security_header),
- data, datalen);
- rv2 = PK11_DigestFinal(enc_context, outdata + tmp1_outlen, &tmp2_outlen,
- FRAME_SIZE_MAX - tmp1_outlen);
- PK11_DestroyContext(enc_context, PR_TRUE);
- *buf_len = tmp1_outlen + tmp2_outlen;
- free(inbuf);
- // memcpy(&outdata[*buf_len], nss_iv_data, sizeof(nss_iv_data));
- if (rv1 != SECSuccess || rv2 != SECSuccess)
- goto out;
- /* Now do the digest */
- enc_context = PK11_CreateContextBySymKey(CKM_SHA_1_HMAC,
- CKA_SIGN, instance->nss_sym_key_sign, &no_params);
- if (!enc_context) {
- char err[1024];
- PR_GetErrorText(err);
- err[PR_GetErrorTextLength()] = 0;
- log_printf(instance->totemnet_log_level_security, "encrypt: PK11_CreateContext failed (digest) err %d: %s\n",
- PR_GetError(), err);
- return -1;
- }
- PK11_DigestBegin(enc_context);
- rv1 = PK11_DigestOp(enc_context, outdata - 16, *buf_len + 16);
- rv2 = PK11_DigestFinal(enc_context, header->hash_digest, &tmp2_outlen, sizeof(header->hash_digest));
- PK11_DestroyContext(enc_context, PR_TRUE);
- if (rv1 != SECSuccess || rv2 != SECSuccess)
- goto out;
- *buf_len = *buf_len + sizeof(struct security_header);
- SECITEM_FreeItem(nss_sec_param, PR_TRUE);
- return 0;
- out:
- return -1;
- }
- static int authenticate_and_decrypt_nss (
- struct totemnet_instance *instance,
- struct iovec *iov,
- unsigned int iov_len)
- {
- PK11Context* enc_context = NULL;
- SECStatus rv1, rv2;
- int tmp1_outlen;
- unsigned int tmp2_outlen;
- unsigned char outbuf[FRAME_SIZE_MAX];
- unsigned char digest[HMAC_HASH_SIZE];
- unsigned char *outdata;
- int result_len;
- unsigned char *data;
- unsigned char *inbuf;
- size_t datalen;
- struct security_header *header = iov[0].iov_base;
- SECItem no_params;
- SECItem ivdata;
- no_params.type = siBuffer;
- no_params.data = 0;
- no_params.len = 0;
- tmp1_outlen = tmp2_outlen = 0;
- if (iov_len > 1) {
- inbuf = copy_from_iovec(iov, iov_len, &datalen);
- if (!inbuf) {
- log_printf(instance->totemnet_log_level_security, "malloc error copying buffer from iovec\n");
- return -1;
- }
- }
- else {
- inbuf = iov[0].iov_base;
- datalen = iov[0].iov_len;
- }
- data = inbuf + sizeof (struct security_header) - 16;
- datalen = datalen - sizeof (struct security_header) + 16;
- outdata = outbuf + sizeof (struct security_header);
- /* Check the digest */
- enc_context = PK11_CreateContextBySymKey (
- CKM_SHA_1_HMAC, CKA_SIGN,
- instance->nss_sym_key_sign,
- &no_params);
- if (!enc_context) {
- char err[1024];
- PR_GetErrorText(err);
- err[PR_GetErrorTextLength()] = 0;
- log_printf(instance->totemnet_log_level_security, "PK11_CreateContext failed (check digest) err %d: %s\n",
- PR_GetError(), err);
- return -1;
- }
- PK11_DigestBegin(enc_context);
- rv1 = PK11_DigestOp(enc_context, data, datalen);
- rv2 = PK11_DigestFinal(enc_context, digest, &tmp2_outlen, sizeof(digest));
- PK11_DestroyContext(enc_context, PR_TRUE);
- if (rv1 != SECSuccess || rv2 != SECSuccess) {
- log_printf(instance->totemnet_log_level_security, "Digest check failed\n");
- return -1;
- }
- if (memcmp(digest, header->hash_digest, tmp2_outlen) != 0) {
- log_printf(instance->totemnet_log_level_error, "Digest does not match\n");
- return -1;
- }
- /*
- * Get rid of salt
- */
- data += 16;
- datalen -= 16;
- /* Create cipher context for decryption */
- ivdata.type = siBuffer;
- ivdata.data = header->salt;
- ivdata.len = sizeof(header->salt);
- enc_context = PK11_CreateContextBySymKey(
- instance->totem_config->crypto_crypt_type,
- CKA_DECRYPT,
- instance->nss_sym_key, &ivdata);
- if (!enc_context) {
- log_printf(instance->totemnet_log_level_security,
- "PK11_CreateContext (decrypt) failed (err %d)\n",
- PR_GetError());
- return -1;
- }
- rv1 = PK11_CipherOp(enc_context, outdata, &tmp1_outlen,
- sizeof(outbuf) - sizeof (struct security_header),
- data, datalen);
- if (rv1 != SECSuccess) {
- log_printf(instance->totemnet_log_level_security,
- "PK11_CipherOp (decrypt) failed (err %d)\n",
- PR_GetError());
- }
- rv2 = PK11_DigestFinal(enc_context, outdata + tmp1_outlen, &tmp2_outlen,
- sizeof(outbuf) - tmp1_outlen);
- PK11_DestroyContext(enc_context, PR_TRUE);
- result_len = tmp1_outlen + tmp2_outlen + sizeof (struct security_header);
- /* Copy it back to the buffer */
- copy_to_iovec(iov, iov_len, outbuf, result_len);
- if (iov_len > 1)
- free(inbuf);
- if (rv1 != SECSuccess || rv2 != SECSuccess)
- return -1;
- return 0;
- }
- #endif
- static int encrypt_and_sign_sober (
- struct totemnet_instance *instance,
- unsigned char *buf,
- size_t *buf_len,
- const struct iovec *iovec,
- unsigned int iov_len)
- {
- int i;
- unsigned char *addr;
- unsigned char keys[48];
- struct security_header *header;
- unsigned char *hmac_key = &keys[32];
- unsigned char *cipher_key = &keys[16];
- unsigned char *initial_vector = &keys[0];
- unsigned long len;
- size_t outlen = 0;
- hmac_state hmac_st;
- prng_state keygen_prng_state;
- prng_state stream_prng_state;
- prng_state *prng_state_in = &instance->totemnet_prng_state;
- header = (struct security_header *)buf;
- addr = buf + sizeof (struct security_header);
- memset (keys, 0, sizeof (keys));
- memset (header->salt, 0, sizeof (header->salt));
- /*
- * Generate MAC, CIPHER, IV keys from private key
- */
- sober128_read (header->salt, sizeof (header->salt), prng_state_in);
- sober128_start (&keygen_prng_state);
- sober128_add_entropy (instance->totemnet_private_key,
- instance->totemnet_private_key_len,
- &keygen_prng_state);
- sober128_add_entropy (header->salt, sizeof (header->salt),
- &keygen_prng_state);
- sober128_read (keys, sizeof (keys), &keygen_prng_state);
- /*
- * Setup stream cipher
- */
- sober128_start (&stream_prng_state);
- sober128_add_entropy (cipher_key, 16, &stream_prng_state);
- sober128_add_entropy (initial_vector, 16, &stream_prng_state);
- outlen = sizeof (struct security_header);
- /*
- * Copy remainder of message, then encrypt it
- */
- for (i = 1; i < iov_len; i++) {
- memcpy (addr, iovec[i].iov_base, iovec[i].iov_len);
- addr += iovec[i].iov_len;
- outlen += iovec[i].iov_len;
- }
- /*
- * Encrypt message by XORing stream cipher data
- */
- sober128_read (buf + sizeof (struct security_header),
- outlen - sizeof (struct security_header),
- &stream_prng_state);
- memset (&hmac_st, 0, sizeof (hmac_st));
- /*
- * Sign the contents of the message with the hmac key and store signature in message
- */
- hmac_init (&hmac_st, DIGEST_SHA1, hmac_key, 16);
- hmac_process (&hmac_st,
- buf + HMAC_HASH_SIZE,
- outlen - HMAC_HASH_SIZE);
- len = hash_descriptor[DIGEST_SHA1]->hashsize;
- hmac_done (&hmac_st, header->hash_digest, &len);
- *buf_len = outlen;
- return 0;
- }
- static int encrypt_and_sign_worker (
- struct totemnet_instance *instance,
- unsigned char *buf,
- size_t *buf_len,
- const struct iovec *iovec,
- unsigned int iov_len)
- {
- if (instance->totem_config->crypto_type == TOTEM_CRYPTO_SOBER ||
- instance->totem_config->crypto_accept == TOTEM_CRYPTO_ACCEPT_OLD)
- return encrypt_and_sign_sober(instance, buf, buf_len, iovec, iov_len);
- #ifdef HAVE_LIBNSS
- if (instance->totem_config->crypto_type == TOTEM_CRYPTO_NSS)
- return encrypt_and_sign_nss(instance, buf, buf_len, iovec, iov_len);
- #endif
- return -1;
- }
- static int authenticate_and_decrypt (
- struct totemnet_instance *instance,
- struct iovec *iov,
- unsigned int iov_len)
- {
- unsigned char type;
- unsigned char *endbuf = iov[iov_len-1].iov_base;
- int res = -1;
- /*
- * Get the encryption type and remove it from the buffer
- */
- type = endbuf[iov[iov_len-1].iov_len-1];
- iov[iov_len-1].iov_len -= 1;
- if (type == TOTEM_CRYPTO_SOBER)
- res = authenticate_and_decrypt_sober(instance, iov, iov_len);
- /*
- * Only try higher crypto options if NEW has been requested
- */
- if (instance->totem_config->crypto_accept == TOTEM_CRYPTO_ACCEPT_NEW) {
- #ifdef HAVE_LIBNSS
- if (type == TOTEM_CRYPTO_NSS)
- res = authenticate_and_decrypt_nss(instance, iov, iov_len);
- #endif
- }
- /*
- * If it failed, then try decrypting the whole packet as it might be
- * from aisexec
- */
- if (res == -1) {
- iov[iov_len-1].iov_len += 1;
- res = authenticate_and_decrypt_sober(instance, iov, iov_len);
- }
- return res;
- }
- static void init_crypto(
- struct totemnet_instance *instance)
- {
- /*
- * If we are expecting NEW crypto type then initialise all available
- * crypto options. For OLD then we only need SOBER128.
- */
- init_sober_crypto(instance);
- if (instance->totem_config->crypto_accept == TOTEM_CRYPTO_ACCEPT_OLD)
- return;
- #ifdef HAVE_LIBNSS
- init_nss_crypto(instance);
- #endif
- }
- int totemnet_crypto_set (hdb_handle_t handle,
- unsigned int type)
- {
- struct totemnet_instance *instance;
- int res = 0;
- res = hdb_handle_get (&totemnet_instance_database, handle,
- (void *)&instance);
- if (res != 0) {
- res = ENOENT;
- goto error_exit;
- }
- /*
- * Can't set crypto type if OLD is selected
- */
- if (instance->totem_config->crypto_accept == TOTEM_CRYPTO_ACCEPT_OLD) {
- res = -1;
- } else {
- /*
- * Validate crypto algorithm
- */
- switch (type) {
- case TOTEM_CRYPTO_SOBER:
- log_printf(instance->totemnet_log_level_security,
- "Transmit security set to: libtomcrypt SOBER128/SHA1HMAC (mode 0)");
- break;
- case TOTEM_CRYPTO_NSS:
- log_printf(instance->totemnet_log_level_security,
- "Transmit security set to: NSS AES128CBC/SHA1HMAC (mode 1)");
- break;
- default:
- res = -1;
- break;
- }
- }
- hdb_handle_put (&totemnet_instance_database, handle);
- error_exit:
- return res;
- }
- static inline void ucast_sendmsg (
- struct totemnet_instance *instance,
- struct totem_ip_address *system_to,
- const void *msg,
- unsigned int msg_len)
- {
- struct msghdr msg_ucast;
- int res = 0;
- size_t buf_len;
- unsigned char sheader[sizeof (struct security_header)];
- unsigned char encrypt_data[FRAME_SIZE_MAX];
- struct iovec iovec_encrypt[2];
- const struct iovec *iovec_sendmsg;
- struct sockaddr_storage sockaddr;
- struct iovec iovec;
- unsigned int iov_len;
- int addrlen;
- if (instance->totem_config->secauth == 1) {
- iovec_encrypt[0].iov_base = sheader;
- iovec_encrypt[0].iov_len = sizeof (struct security_header);
- iovec_encrypt[1].iov_base = (void *)msg;
- iovec_encrypt[1].iov_len = msg_len;
- /*
- * Encrypt and digest the message
- */
- encrypt_and_sign_worker (
- instance,
- encrypt_data,
- &buf_len,
- iovec_encrypt,
- 2);
- if (instance->totem_config->crypto_accept == TOTEM_CRYPTO_ACCEPT_NEW) {
- encrypt_data[buf_len++] = instance->totem_config->crypto_type;
- }
- else {
- encrypt_data[buf_len++] = 0;
- }
- iovec_encrypt[0].iov_base = encrypt_data;
- iovec_encrypt[0].iov_len = buf_len;
- iovec_sendmsg = &iovec_encrypt[0];
- iov_len = 1;
- } else {
- iovec.iov_base = (void *)msg;
- iovec.iov_len = msg_len;
- iovec_sendmsg = &iovec;
- iov_len = 1;
- }
- /*
- * Build unicast message
- */
- totemip_totemip_to_sockaddr_convert(system_to,
- instance->totem_interface->ip_port, &sockaddr, &addrlen);
- msg_ucast.msg_name = &sockaddr;
- msg_ucast.msg_namelen = addrlen;
- msg_ucast.msg_iov = (void *) iovec_sendmsg;
- msg_ucast.msg_iovlen = iov_len;
- #if !defined(COROSYNC_SOLARIS)
- msg_ucast.msg_control = 0;
- msg_ucast.msg_controllen = 0;
- msg_ucast.msg_flags = 0;
- #endif
- /*
- * Transmit multicast message
- * An error here is recovered by totemsrp
- */
- res = sendmsg (instance->totemnet_sockets.mcast_send, &msg_ucast,
- MSG_NOSIGNAL);
- }
- static inline void mcast_sendmsg (
- struct totemnet_instance *instance,
- const void *msg,
- unsigned int msg_len)
- {
- struct msghdr msg_mcast;
- int res = 0;
- size_t buf_len;
- unsigned char sheader[sizeof (struct security_header)];
- unsigned char encrypt_data[FRAME_SIZE_MAX];
- struct iovec iovec_encrypt[2];
- struct iovec iovec;
- const struct iovec *iovec_sendmsg;
- struct sockaddr_storage sockaddr;
- unsigned int iov_len;
- int addrlen;
- if (instance->totem_config->secauth == 1) {
- iovec_encrypt[0].iov_base = sheader;
- iovec_encrypt[0].iov_len = sizeof (struct security_header);
- iovec_encrypt[1].iov_base = (void *)msg;
- iovec_encrypt[1].iov_len = msg_len;
- /*
- * Encrypt and digest the message
- */
- encrypt_and_sign_worker (
- instance,
- encrypt_data,
- &buf_len,
- iovec_encrypt,
- 2);
- if (instance->totem_config->crypto_accept == TOTEM_CRYPTO_ACCEPT_NEW) {
- encrypt_data[buf_len++] = instance->totem_config->crypto_type;
- }
- else {
- encrypt_data[buf_len++] = 0;
- }
- iovec_encrypt[0].iov_base = encrypt_data;
- iovec_encrypt[0].iov_len = buf_len;
- iovec_sendmsg = &iovec_encrypt[0];
- iov_len = 1;
- } else {
- iovec.iov_base = (void *)msg;
- iovec.iov_len = msg_len;
- iovec_sendmsg = &iovec;
- iov_len = 1;
- }
- /*
- * Build multicast message
- */
- totemip_totemip_to_sockaddr_convert(&instance->mcast_address,
- instance->totem_interface->ip_port, &sockaddr, &addrlen);
- msg_mcast.msg_name = &sockaddr;
- msg_mcast.msg_namelen = addrlen;
- msg_mcast.msg_iov = (void *) iovec_sendmsg;
- msg_mcast.msg_iovlen = iov_len;
- #if !defined(COROSYNC_SOLARIS)
- msg_mcast.msg_control = 0;
- msg_mcast.msg_controllen = 0;
- msg_mcast.msg_flags = 0;
- #endif
- /*
- * Transmit multicast message
- * An error here is recovered by totemsrp
- */
- res = sendmsg (instance->totemnet_sockets.mcast_send, &msg_mcast,
- MSG_NOSIGNAL);
- }
- static void totemnet_mcast_thread_state_constructor (
- void *totemnet_mcast_thread_state_in)
- {
- struct totemnet_mcast_thread_state *totemnet_mcast_thread_state =
- (struct totemnet_mcast_thread_state *)totemnet_mcast_thread_state_in;
- memset (totemnet_mcast_thread_state, 0,
- sizeof (totemnet_mcast_thread_state));
- rng_make_prng (128, PRNG_SOBER,
- &totemnet_mcast_thread_state->prng_state, NULL);
- }
- static void totemnet_mcast_worker_fn (void *thread_state, void *work_item_in)
- {
- struct work_item *work_item = (struct work_item *)work_item_in;
- struct totemnet_mcast_thread_state *totemnet_mcast_thread_state =
- (struct totemnet_mcast_thread_state *)thread_state;
- struct totemnet_instance *instance = work_item->instance;
- struct msghdr msg_mcast;
- unsigned char sheader[sizeof (struct security_header)];
- int res = 0;
- size_t buf_len;
- struct iovec iovec_enc[2];
- struct iovec iovec;
- struct sockaddr_storage sockaddr;
- int addrlen;
- if (instance->totem_config->secauth == 1) {
- iovec_enc[0].iov_base = sheader;
- iovec_enc[0].iov_len = sizeof (struct security_header);
- iovec_enc[1].iov_base = (void *)work_item->msg;
- iovec_enc[1].iov_len = work_item->msg_len;
- /*
- * Encrypt and digest the message
- */
- encrypt_and_sign_worker (
- instance,
- totemnet_mcast_thread_state->iobuf,
- &buf_len,
- iovec_enc, 2);
- iovec.iov_base = totemnet_mcast_thread_state->iobuf;
- iovec.iov_len = buf_len;
- } else {
- iovec.iov_base = (void *)work_item->msg;
- iovec.iov_len = work_item->msg_len;
- }
- totemip_totemip_to_sockaddr_convert(&instance->mcast_address,
- instance->totem_interface->ip_port, &sockaddr, &addrlen);
- msg_mcast.msg_name = &sockaddr;
- msg_mcast.msg_namelen = addrlen;
- msg_mcast.msg_iov = &iovec;
- msg_mcast.msg_iovlen = 1;
- #if !defined(COROSYNC_SOLARIS)
- msg_mcast.msg_control = 0;
- msg_mcast.msg_controllen = 0;
- msg_mcast.msg_flags = 0;
- #endif
- /*
- * Transmit multicast message
- * An error here is recovered by totemnet
- */
- res = sendmsg (instance->totemnet_sockets.mcast_send, &msg_mcast,
- MSG_NOSIGNAL);
- }
- int totemnet_finalize (
- hdb_handle_t handle)
- {
- struct totemnet_instance *instance;
- int res = 0;
- res = hdb_handle_get (&totemnet_instance_database, handle,
- (void *)&instance);
- if (res != 0) {
- res = ENOENT;
- goto error_exit;
- }
- worker_thread_group_exit (&instance->worker_thread_group);
- if (instance->totemnet_sockets.mcast_recv > 0) {
- close (instance->totemnet_sockets.mcast_recv);
- poll_dispatch_delete (instance->totemnet_poll_handle,
- instance->totemnet_sockets.mcast_recv);
- }
- if (instance->totemnet_sockets.mcast_send > 0) {
- close (instance->totemnet_sockets.mcast_send);
- }
- if (instance->totemnet_sockets.token > 0) {
- close (instance->totemnet_sockets.token);
- poll_dispatch_delete (instance->totemnet_poll_handle,
- instance->totemnet_sockets.token);
- }
- hdb_handle_put (&totemnet_instance_database, handle);
- error_exit:
- return (res);
- }
- /*
- * Only designed to work with a message with one iov
- */
- static int net_deliver_fn (
- hdb_handle_t handle,
- int fd,
- int revents,
- void *data)
- {
- struct totemnet_instance *instance = (struct totemnet_instance *)data;
- struct msghdr msg_recv;
- struct iovec *iovec;
- struct security_header *security_header;
- struct sockaddr_storage system_from;
- int bytes_received;
- int res = 0;
- unsigned char *msg_offset;
- unsigned int size_delv;
- if (instance->flushing == 1) {
- iovec = &instance->totemnet_iov_recv_flush;
- } else {
- iovec = &instance->totemnet_iov_recv;
- }
- /*
- * Receive datagram
- */
- msg_recv.msg_name = &system_from;
- msg_recv.msg_namelen = sizeof (struct sockaddr_storage);
- msg_recv.msg_iov = iovec;
- msg_recv.msg_iovlen = 1;
- #if !defined(COROSYNC_SOLARIS)
- msg_recv.msg_control = 0;
- msg_recv.msg_controllen = 0;
- msg_recv.msg_flags = 0;
- #endif
- bytes_received = recvmsg (fd, &msg_recv, MSG_NOSIGNAL | MSG_DONTWAIT);
- if (bytes_received == -1) {
- return (0);
- } else {
- instance->stats_recv += bytes_received;
- }
- if ((instance->totem_config->secauth == 1) &&
- (bytes_received < sizeof (struct security_header))) {
- log_printf (instance->totemnet_log_level_security, "Received message is too short... ignoring %d.\n", bytes_received);
- return (0);
- }
- security_header = (struct security_header *)iovec->iov_base;
- iovec->iov_len = bytes_received;
- if (instance->totem_config->secauth == 1) {
- /*
- * Authenticate and if authenticated, decrypt datagram
- */
- res = authenticate_and_decrypt (instance, iovec, 1);
- if (res == -1) {
- log_printf (instance->totemnet_log_level_security, "Received message has invalid digest... ignoring.\n");
- log_printf (instance->totemnet_log_level_security,
- "Invalid packet data\n");
- iovec->iov_len = FRAME_SIZE_MAX;
- return 0;
- }
- msg_offset = (unsigned char *)iovec->iov_base +
- sizeof (struct security_header);
- size_delv = bytes_received - sizeof (struct security_header);
- } else {
- msg_offset = iovec->iov_base;
- size_delv = bytes_received;
- }
- /*
- * Handle incoming message
- */
- instance->totemnet_deliver_fn (
- instance->context,
- msg_offset,
- size_delv);
- iovec->iov_len = FRAME_SIZE_MAX;
- return (0);
- }
- static int netif_determine (
- struct totemnet_instance *instance,
- struct totem_ip_address *bindnet,
- struct totem_ip_address *bound_to,
- int *interface_up,
- int *interface_num)
- {
- int res;
- res = totemip_iface_check (bindnet, bound_to,
- interface_up, interface_num,
- instance->totem_config->clear_node_high_bit);
- return (res);
- }
- /*
- * If the interface is up, the sockets for totem are built. If the interface is down
- * this function is requeued in the timer list to retry building the sockets later.
- */
- static void timer_function_netif_check_timeout (
- void *data)
- {
- struct totemnet_instance *instance = (struct totemnet_instance *)data;
- int res;
- int interface_up;
- int interface_num;
- struct totem_ip_address *bind_address;
- /*
- * Build sockets for every interface
- */
- netif_determine (instance,
- &instance->totem_interface->bindnet,
- &instance->totem_interface->boundto,
- &interface_up, &interface_num);
- /*
- * If the network interface isn't back up and we are already
- * in loopback mode, add timer to check again and return
- */
- if ((instance->netif_bind_state == BIND_STATE_LOOPBACK &&
- interface_up == 0) ||
- (instance->my_memb_entries == 1 &&
- instance->netif_bind_state == BIND_STATE_REGULAR &&
- interface_up == 1)) {
- poll_timer_add (instance->totemnet_poll_handle,
- instance->totem_config->downcheck_timeout,
- (void *)instance,
- timer_function_netif_check_timeout,
- &instance->timer_netif_check_timeout);
- /*
- * Add a timer to check for a downed regular interface
- */
- return;
- }
- if (instance->totemnet_sockets.mcast_recv > 0) {
- close (instance->totemnet_sockets.mcast_recv);
- poll_dispatch_delete (instance->totemnet_poll_handle,
- instance->totemnet_sockets.mcast_recv);
- }
- if (instance->totemnet_sockets.mcast_send > 0) {
- close (instance->totemnet_sockets.mcast_send);
- }
- if (instance->totemnet_sockets.token > 0) {
- close (instance->totemnet_sockets.token);
- poll_dispatch_delete (instance->totemnet_poll_handle,
- instance->totemnet_sockets.token);
- }
- if (interface_up == 0) {
- /*
- * Interface is not up
- */
- instance->netif_bind_state = BIND_STATE_LOOPBACK;
- bind_address = &localhost;
- /*
- * Add a timer to retry building interfaces and request memb_gather_enter
- */
- poll_timer_add (instance->totemnet_poll_handle,
- instance->totem_config->downcheck_timeout,
- (void *)instance,
- timer_function_netif_check_timeout,
- &instance->timer_netif_check_timeout);
- } else {
- /*
- * Interface is up
- */
- instance->netif_bind_state = BIND_STATE_REGULAR;
- bind_address = &instance->totem_interface->bindnet;
- }
- /*
- * Create and bind the multicast and unicast sockets
- */
- res = totemnet_build_sockets (instance,
- &instance->mcast_address,
- bind_address,
- &instance->totemnet_sockets,
- &instance->totem_interface->boundto);
- poll_dispatch_add (
- instance->totemnet_poll_handle,
- instance->totemnet_sockets.mcast_recv,
- POLLIN, instance, net_deliver_fn);
- poll_dispatch_add (
- instance->totemnet_poll_handle,
- instance->totemnet_sockets.token,
- POLLIN, instance, net_deliver_fn);
- totemip_copy (&instance->my_id, &instance->totem_interface->boundto);
- /*
- * This reports changes in the interface to the user and totemsrp
- */
- if (instance->netif_bind_state == BIND_STATE_REGULAR) {
- if (instance->netif_state_report & NETIF_STATE_REPORT_UP) {
- log_printf (instance->totemnet_log_level_notice,
- "The network interface [%s] is now up.\n",
- totemip_print (&instance->totem_interface->boundto));
- instance->netif_state_report = NETIF_STATE_REPORT_DOWN;
- instance->totemnet_iface_change_fn (instance->context, &instance->my_id);
- }
- /*
- * Add a timer to check for interface going down in single membership
- */
- if (instance->my_memb_entries == 1) {
- poll_timer_add (instance->totemnet_poll_handle,
- instance->totem_config->downcheck_timeout,
- (void *)instance,
- timer_function_netif_check_timeout,
- &instance->timer_netif_check_timeout);
- }
- } else {
- if (instance->netif_state_report & NETIF_STATE_REPORT_DOWN) {
- log_printf (instance->totemnet_log_level_notice,
- "The network interface is down.\n");
- instance->totemnet_iface_change_fn (instance->context, &instance->my_id);
- }
- instance->netif_state_report = NETIF_STATE_REPORT_UP;
- }
- }
- /*
- * Check if an interface is down and reconfigure
- * totemnet waiting for it to come back up
- */
- static void netif_down_check (struct totemnet_instance *instance)
- {
- timer_function_netif_check_timeout (instance);
- }
- /* Set the socket priority to INTERACTIVE to ensure
- that our messages don't get queued behind anything else */
- static void totemnet_traffic_control_set(struct totemnet_instance *instance, int sock)
- {
- #ifdef SO_PRIORITY
- int prio = 6; /* TC_PRIO_INTERACTIVE */
- if (setsockopt(sock, SOL_SOCKET, SO_PRIORITY, &prio, sizeof(int)))
- log_printf (instance->totemnet_log_level_warning, "Could not set traffic priority. (%s)\n", strerror (errno));
- #endif
- }
- static int totemnet_build_sockets_ip (
- struct totemnet_instance *instance,
- struct totem_ip_address *mcast_address,
- struct totem_ip_address *bindnet_address,
- struct totemnet_socket *sockets,
- struct totem_ip_address *bound_to,
- int interface_num)
- {
- struct sockaddr_storage sockaddr;
- struct ipv6_mreq mreq6;
- struct ip_mreq mreq;
- struct sockaddr_storage mcast_ss, boundto_ss;
- struct sockaddr_in6 *mcast_sin6 = (struct sockaddr_in6 *)&mcast_ss;
- struct sockaddr_in *mcast_sin = (struct sockaddr_in *)&mcast_ss;
- struct sockaddr_in *boundto_sin = (struct sockaddr_in *)&boundto_ss;
- unsigned int sendbuf_size;
- unsigned int recvbuf_size;
- unsigned int optlen = sizeof (sendbuf_size);
- int addrlen;
- int res;
- int flag;
- /*
- * Create multicast recv socket
- */
- sockets->mcast_recv = socket (bindnet_address->family, SOCK_DGRAM, 0);
- if (sockets->mcast_recv == -1) {
- perror ("socket");
- return (-1);
- }
- totemip_nosigpipe (sockets->mcast_recv);
- res = fcntl (sockets->mcast_recv, F_SETFL, O_NONBLOCK);
- if (res == -1) {
- log_printf (instance->totemnet_log_level_warning, "Could not set non-blocking operation on multicast socket: %s\n", strerror (errno));
- return (-1);
- }
- /*
- * Force reuse
- */
- flag = 1;
- if ( setsockopt(sockets->mcast_recv, SOL_SOCKET, SO_REUSEADDR, (char *)&flag, sizeof (flag)) < 0) {
- perror("setsockopt reuseaddr");
- return (-1);
- }
- /*
- * Bind to multicast socket used for multicast receives
- */
- totemip_totemip_to_sockaddr_convert(mcast_address,
- instance->totem_interface->ip_port, &sockaddr, &addrlen);
- res = bind (sockets->mcast_recv, (struct sockaddr *)&sockaddr, addrlen);
- if (res == -1) {
- perror ("bind mcast recv socket failed");
- return (-1);
- }
- /*
- * Setup mcast send socket
- */
- sockets->mcast_send = socket (bindnet_address->family, SOCK_DGRAM, 0);
- if (sockets->mcast_send == -1) {
- perror ("socket");
- return (-1);
- }
- totemip_nosigpipe (sockets->mcast_send);
- res = fcntl (sockets->mcast_send, F_SETFL, O_NONBLOCK);
- if (res == -1) {
- log_printf (instance->totemnet_log_level_warning, "Could not set non-blocking operation on multicast socket: %s\n", strerror (errno));
- return (-1);
- }
- /*
- * Force reuse
- */
- flag = 1;
- if ( setsockopt(sockets->mcast_send, SOL_SOCKET, SO_REUSEADDR, (char *)&flag, sizeof (flag)) < 0) {
- perror("setsockopt reuseaddr");
- return (-1);
- }
- totemip_totemip_to_sockaddr_convert(bound_to, instance->totem_interface->ip_port - 1,
- &sockaddr, &addrlen);
- res = bind (sockets->mcast_send, (struct sockaddr *)&sockaddr, addrlen);
- if (res == -1) {
- perror ("bind mcast send socket failed");
- return (-1);
- }
- /*
- * Setup unicast socket
- */
- sockets->token = socket (bindnet_address->family, SOCK_DGRAM, 0);
- if (sockets->token == -1) {
- perror ("socket2");
- return (-1);
- }
- totemip_nosigpipe (sockets->token);
- res = fcntl (sockets->token, F_SETFL, O_NONBLOCK);
- if (res == -1) {
- log_printf (instance->totemnet_log_level_warning, "Could not set non-blocking operation on token socket: %s\n", strerror (errno));
- return (-1);
- }
- /*
- * Force reuse
- */
- flag = 1;
- if ( setsockopt(sockets->token, SOL_SOCKET, SO_REUSEADDR, (char *)&flag, sizeof (flag)) < 0) {
- perror("setsockopt reuseaddr");
- return (-1);
- }
- /*
- * Bind to unicast socket used for token send/receives
- * This has the side effect of binding to the correct interface
- */
- totemip_totemip_to_sockaddr_convert(bound_to, instance->totem_interface->ip_port, &sockaddr, &addrlen);
- res = bind (sockets->token, (struct sockaddr *)&sockaddr, addrlen);
- if (res == -1) {
- perror ("bind token socket failed");
- return (-1);
- }
- recvbuf_size = MCAST_SOCKET_BUFFER_SIZE;
- sendbuf_size = MCAST_SOCKET_BUFFER_SIZE;
- /*
- * Set buffer sizes to avoid overruns
- */
- res = setsockopt (sockets->mcast_recv, SOL_SOCKET, SO_RCVBUF, &recvbuf_size, optlen);
- res = setsockopt (sockets->mcast_send, SOL_SOCKET, SO_SNDBUF, &sendbuf_size, optlen);
- res = getsockopt (sockets->mcast_recv, SOL_SOCKET, SO_RCVBUF, &recvbuf_size, &optlen);
- if (res == 0) {
- log_printf (instance->totemnet_log_level_notice,
- "Receive multicast socket recv buffer size (%d bytes).\n", recvbuf_size);
- }
- res = getsockopt (sockets->mcast_send, SOL_SOCKET, SO_SNDBUF, &sendbuf_size, &optlen);
- if (res == 0) {
- log_printf (instance->totemnet_log_level_notice,
- "Transmit multicast socket send buffer size (%d bytes).\n", sendbuf_size);
- }
- /*
- * Join group membership on socket
- */
- totemip_totemip_to_sockaddr_convert(mcast_address, instance->totem_interface->ip_port, &mcast_ss, &addrlen);
- totemip_totemip_to_sockaddr_convert(bound_to, instance->totem_interface->ip_port, &boundto_ss, &addrlen);
- if (instance->totem_config->broadcast_use == 1) {
- unsigned int broadcast = 1;
- if ((setsockopt(sockets->mcast_recv, SOL_SOCKET,
- SO_BROADCAST, &broadcast, sizeof (broadcast))) == -1) {
- perror("setting broadcast option");
- return (-1);
- }
- if ((setsockopt(sockets->mcast_send, SOL_SOCKET,
- SO_BROADCAST, &broadcast, sizeof (broadcast))) == -1) {
- perror("setting broadcast option");
- return (-1);
- }
- } else {
- switch (bindnet_address->family) {
- case AF_INET:
- memset(&mreq, 0, sizeof(mreq));
- mreq.imr_multiaddr.s_addr = mcast_sin->sin_addr.s_addr;
- mreq.imr_interface.s_addr = boundto_sin->sin_addr.s_addr;
- res = setsockopt (sockets->mcast_recv, IPPROTO_IP, IP_ADD_MEMBERSHIP,
- &mreq, sizeof (mreq));
- if (res == -1) {
- perror ("join ipv4 multicast group failed");
- return (-1);
- }
- break;
- case AF_INET6:
- memset(&mreq6, 0, sizeof(mreq6));
- memcpy(&mreq6.ipv6mr_multiaddr, &mcast_sin6->sin6_addr, sizeof(struct in6_addr));
- mreq6.ipv6mr_interface = interface_num;
- res = setsockopt (sockets->mcast_recv, IPPROTO_IPV6, IPV6_JOIN_GROUP,
- &mreq6, sizeof (mreq6));
- if (res == -1) {
- perror ("join ipv6 multicast group failed");
- return (-1);
- }
- break;
- }
- }
- /*
- * Turn on multicast loopback
- */
- flag = 1;
- switch ( bindnet_address->family ) {
- case AF_INET:
- res = setsockopt (sockets->mcast_send, IPPROTO_IP, IP_MULTICAST_LOOP,
- &flag, sizeof (flag));
- break;
- case AF_INET6:
- res = setsockopt (sockets->mcast_send, IPPROTO_IPV6, IPV6_MULTICAST_LOOP,
- &flag, sizeof (flag));
- }
- if (res == -1) {
- perror ("turn off loopback");
- return (-1);
- }
- /*
- * Set multicast packets TTL
- */
- if ( bindnet_address->family == AF_INET6 )
- {
- flag = 255;
- res = setsockopt (sockets->mcast_send, IPPROTO_IPV6, IPV6_MULTICAST_HOPS,
- &flag, sizeof (flag));
- if (res == -1) {
- perror ("setp mcast hops");
- return (-1);
- }
- }
- /*
- * Bind to a specific interface for multicast send and receive
- */
- switch ( bindnet_address->family ) {
- case AF_INET:
- if (setsockopt (sockets->mcast_send, IPPROTO_IP, IP_MULTICAST_IF,
- &boundto_sin->sin_addr, sizeof (boundto_sin->sin_addr)) < 0) {
- perror ("cannot select interface");
- return (-1);
- }
- if (setsockopt (sockets->mcast_recv, IPPROTO_IP, IP_MULTICAST_IF,
- &boundto_sin->sin_addr, sizeof (boundto_sin->sin_addr)) < 0) {
- perror ("cannot select interface");
- return (-1);
- }
- break;
- case AF_INET6:
- if (setsockopt (sockets->mcast_send, IPPROTO_IPV6, IPV6_MULTICAST_IF,
- &interface_num, sizeof (interface_num)) < 0) {
- perror ("cannot select interface");
- return (-1);
- }
- if (setsockopt (sockets->mcast_recv, IPPROTO_IPV6, IPV6_MULTICAST_IF,
- &interface_num, sizeof (interface_num)) < 0) {
- perror ("cannot select interface");
- return (-1);
- }
- break;
- }
- return 0;
- }
- static int totemnet_build_sockets (
- struct totemnet_instance *instance,
- struct totem_ip_address *mcast_address,
- struct totem_ip_address *bindnet_address,
- struct totemnet_socket *sockets,
- struct totem_ip_address *bound_to)
- {
- int interface_num;
- int interface_up;
- int res;
- /*
- * Determine the ip address bound to and the interface name
- */
- res = netif_determine (instance,
- bindnet_address,
- bound_to,
- &interface_up,
- &interface_num);
- if (res == -1) {
- return (-1);
- }
- totemip_copy(&instance->my_id, bound_to);
- res = totemnet_build_sockets_ip (instance, mcast_address,
- bindnet_address, sockets, bound_to, interface_num);
- /* We only send out of the token socket */
- totemnet_traffic_control_set(instance, sockets->token);
- return res;
- }
- /*
- * Totem Network interface - also does encryption/decryption
- * depends on poll abstraction, POSIX, IPV4
- */
- /*
- * Create an instance
- */
- int totemnet_initialize (
- hdb_handle_t poll_handle,
- hdb_handle_t *handle,
- struct totem_config *totem_config,
- int interface_no,
- void *context,
- void (*deliver_fn) (
- void *context,
- const void *msg,
- unsigned int msg_len),
- void (*iface_change_fn) (
- void *context,
- const struct totem_ip_address *iface_address))
- {
- struct totemnet_instance *instance;
- unsigned int res;
- res = hdb_handle_create (&totemnet_instance_database,
- sizeof (struct totemnet_instance), handle);
- if (res != 0) {
- goto error_exit;
- }
- res = hdb_handle_get (&totemnet_instance_database, *handle,
- (void *)&instance);
- if (res != 0) {
- goto error_destroy;
- }
- totemnet_instance_initialize (instance);
- instance->totem_config = totem_config;
- /*
- * Configure logging
- */
- instance->totemnet_log_level_security = 1; //totem_config->totem_logging_configuration.log_level_security;
- instance->totemnet_log_level_error = totem_config->totem_logging_configuration.log_level_error;
- instance->totemnet_log_level_warning = totem_config->totem_logging_configuration.log_level_warning;
- instance->totemnet_log_level_notice = totem_config->totem_logging_configuration.log_level_notice;
- instance->totemnet_log_level_debug = totem_config->totem_logging_configuration.log_level_debug;
- instance->totemnet_subsys_id = totem_config->totem_logging_configuration.log_subsys_id;
- instance->totemnet_log_printf = totem_config->totem_logging_configuration.log_printf;
- /*
- * Initialize random number generator for later use to generate salt
- */
- memcpy (instance->totemnet_private_key, totem_config->private_key,
- totem_config->private_key_len);
- instance->totemnet_private_key_len = totem_config->private_key_len;
- init_crypto(instance);
- /*
- * Initialize local variables for totemnet
- */
- instance->totem_interface = &totem_config->interfaces[interface_no];
- totemip_copy (&instance->mcast_address, &instance->totem_interface->mcast_addr);
- memset (instance->iov_buffer, 0, FRAME_SIZE_MAX);
- /*
- * If threaded send requested, initialize thread group data structure
- */
- if (totem_config->threads) {
- worker_thread_group_init (
- &instance->worker_thread_group,
- totem_config->threads, 128,
- sizeof (struct work_item),
- sizeof (struct totemnet_mcast_thread_state),
- totemnet_mcast_thread_state_constructor,
- totemnet_mcast_worker_fn);
- }
- instance->totemnet_poll_handle = poll_handle;
- instance->totem_interface->bindnet.nodeid = instance->totem_config->node_id;
- instance->context = context;
- instance->totemnet_deliver_fn = deliver_fn;
- instance->totemnet_iface_change_fn = iface_change_fn;
- instance->handle = *handle;
- totemip_localhost (instance->mcast_address.family, &localhost);
- netif_down_check (instance);
- error_exit:
- hdb_handle_put (&totemnet_instance_database, *handle);
- return (0);
- error_destroy:
- hdb_handle_destroy (&totemnet_instance_database, *handle);
- return (-1);
- }
- int totemnet_processor_count_set (
- hdb_handle_t handle,
- int processor_count)
- {
- struct totemnet_instance *instance;
- int res = 0;
- res = hdb_handle_get (&totemnet_instance_database, handle,
- (void *)&instance);
- if (res != 0) {
- res = ENOENT;
- goto error_exit;
- }
- instance->my_memb_entries = processor_count;
- poll_timer_delete (instance->totemnet_poll_handle,
- instance->timer_netif_check_timeout);
- if (processor_count == 1) {
- poll_timer_add (instance->totemnet_poll_handle,
- instance->totem_config->downcheck_timeout,
- (void *)instance,
- timer_function_netif_check_timeout,
- &instance->timer_netif_check_timeout);
- }
- hdb_handle_put (&totemnet_instance_database, handle);
- error_exit:
- return (res);
- }
- int totemnet_recv_flush (hdb_handle_t handle)
- {
- struct totemnet_instance *instance;
- struct pollfd ufd;
- int nfds;
- int res = 0;
- res = hdb_handle_get (&totemnet_instance_database, handle,
- (void *)&instance);
- if (res != 0) {
- res = ENOENT;
- goto error_exit;
- }
- instance->flushing = 1;
- do {
- ufd.fd = instance->totemnet_sockets.mcast_recv;
- ufd.events = POLLIN;
- nfds = poll (&ufd, 1, 0);
- if (nfds == 1 && ufd.revents & POLLIN) {
- net_deliver_fn (0, instance->totemnet_sockets.mcast_recv,
- ufd.revents, instance);
- }
- } while (nfds == 1);
- instance->flushing = 0;
- hdb_handle_put (&totemnet_instance_database, handle);
- error_exit:
- return (res);
- }
- int totemnet_send_flush (hdb_handle_t handle)
- {
- struct totemnet_instance *instance;
- int res = 0;
- res = hdb_handle_get (&totemnet_instance_database, handle,
- (void *)&instance);
- if (res != 0) {
- res = ENOENT;
- goto error_exit;
- }
- worker_thread_group_wait (&instance->worker_thread_group);
- hdb_handle_put (&totemnet_instance_database, handle);
- error_exit:
- return (res);
- }
- int totemnet_token_send (
- hdb_handle_t handle,
- const void *msg,
- unsigned int msg_len)
- {
- struct totemnet_instance *instance;
- int res = 0;
- res = hdb_handle_get (&totemnet_instance_database, handle,
- (void *)&instance);
- if (res != 0) {
- res = ENOENT;
- goto error_exit;
- }
- ucast_sendmsg (instance, &instance->token_target, msg, msg_len);
- hdb_handle_put (&totemnet_instance_database, handle);
- error_exit:
- return (res);
- }
- int totemnet_mcast_flush_send (
- hdb_handle_t handle,
- const void *msg,
- unsigned int msg_len)
- {
- struct totemnet_instance *instance;
- int res = 0;
- res = hdb_handle_get (&totemnet_instance_database, handle,
- (void *)&instance);
- if (res != 0) {
- res = ENOENT;
- goto error_exit;
- }
- mcast_sendmsg (instance, msg, msg_len);
- hdb_handle_put (&totemnet_instance_database, handle);
- error_exit:
- return (res);
- }
- int totemnet_mcast_noflush_send (
- hdb_handle_t handle,
- const void *msg,
- unsigned int msg_len)
- {
- struct totemnet_instance *instance;
- struct work_item work_item;
- int res = 0;
- res = hdb_handle_get (&totemnet_instance_database, handle,
- (void *)&instance);
- if (res != 0) {
- res = ENOENT;
- goto error_exit;
- }
- if (instance->totem_config->threads) {
- work_item.msg = msg;
- work_item.msg_len = msg_len;
- work_item.instance = instance;
- worker_thread_group_work_add (&instance->worker_thread_group,
- &work_item);
- } else {
- mcast_sendmsg (instance, msg, msg_len);
- }
- hdb_handle_put (&totemnet_instance_database, handle);
- error_exit:
- return (res);
- }
- extern int totemnet_iface_check (hdb_handle_t handle)
- {
- struct totemnet_instance *instance;
- int res = 0;
- res = hdb_handle_get (&totemnet_instance_database, handle,
- (void *)&instance);
- if (res != 0) {
- res = ENOENT;
- goto error_exit;
- }
- timer_function_netif_check_timeout (instance);
- hdb_handle_put (&totemnet_instance_database, handle);
- error_exit:
- return (res);
- }
- extern void totemnet_net_mtu_adjust (struct totem_config *totem_config)
- {
- #define UDPIP_HEADER_SIZE (20 + 8) /* 20 bytes for ip 8 bytes for udp */
- if (totem_config->secauth == 1) {
- totem_config->net_mtu -= sizeof (struct security_header) +
- UDPIP_HEADER_SIZE;
- } else {
- totem_config->net_mtu -= UDPIP_HEADER_SIZE;
- }
- }
- const char *totemnet_iface_print (hdb_handle_t handle) {
- struct totemnet_instance *instance;
- int res = 0;
- const char *ret_char;
- res = hdb_handle_get (&totemnet_instance_database, handle,
- (void *)&instance);
- if (res != 0) {
- ret_char = "Invalid totemnet handle";
- goto error_exit;
- }
- ret_char = totemip_print (&instance->my_id);
- hdb_handle_put (&totemnet_instance_database, handle);
- error_exit:
- return (ret_char);
- }
- int totemnet_iface_get (
- hdb_handle_t handle,
- struct totem_ip_address *addr)
- {
- struct totemnet_instance *instance;
- unsigned int res;
- res = hdb_handle_get (&totemnet_instance_database, handle,
- (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- memcpy (addr, &instance->my_id, sizeof (struct totem_ip_address));
- hdb_handle_put (&totemnet_instance_database, handle);
- error_exit:
- return (res);
- }
- int totemnet_token_target_set (
- hdb_handle_t handle,
- const struct totem_ip_address *token_target)
- {
- struct totemnet_instance *instance;
- unsigned int res;
- res = hdb_handle_get (&totemnet_instance_database, handle,
- (void *)&instance);
- if (res != 0) {
- goto error_exit;
- }
- memcpy (&instance->token_target, token_target,
- sizeof (struct totem_ip_address));
- hdb_handle_put (&totemnet_instance_database, handle);
- error_exit:
- return (res);
- }
|