Changeset e6a78b9 in mainline for uspace/srv/locsrv/locsrv.c


Ignore:
Timestamp:
2012-06-29T15:31:44Z (12 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9432f08
Parents:
34ab31c (diff), 0bbd13e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/srv/locsrv/locsrv.c

    r34ab31c re6a78b9  
    5151
    5252#include "category.h"
    53 #include "loc.h"
     53#include "locsrv.h"
    5454
    5555#define NAME          "loc"
     
    390390         */
    391391        list_initialize(&server->services);
    392 
    393392        link_initialize(&server->servers);
    394393       
     
    651650            min(size, act_size));
    652651        free(fqn);
     652       
     653        fibril_mutex_unlock(&services_list_mutex);
     654       
     655        async_answer_0(iid, retval);
     656}
     657
     658static void loc_service_get_server_name(ipc_callid_t iid, ipc_call_t *icall)
     659{
     660        ipc_callid_t callid;
     661        size_t size;
     662        size_t act_size;
     663        loc_service_t *svc;
     664       
     665        if (!async_data_read_receive(&callid, &size)) {
     666                async_answer_0(callid, EREFUSED);
     667                async_answer_0(iid, EREFUSED);
     668                return;
     669        }
     670       
     671        fibril_mutex_lock(&services_list_mutex);
     672       
     673        svc = loc_service_find_id(IPC_GET_ARG1(*icall));
     674        if (svc == NULL) {
     675                fibril_mutex_unlock(&services_list_mutex);
     676                async_answer_0(callid, ENOENT);
     677                async_answer_0(iid, ENOENT);
     678                return;
     679        }
     680       
     681        if (svc->server == NULL) {
     682                fibril_mutex_unlock(&services_list_mutex);
     683                async_answer_0(callid, EINVAL);
     684                async_answer_0(iid, EINVAL);
     685                return;
     686        }
     687       
     688        act_size = str_size(svc->server->name);
     689        if (act_size > size) {
     690                fibril_mutex_unlock(&services_list_mutex);
     691                async_answer_0(callid, EOVERFLOW);
     692                async_answer_0(iid, EOVERFLOW);
     693                return;
     694        }
     695       
     696        sysarg_t retval = async_data_read_finalize(callid, svc->server->name,
     697            min(size, act_size));
    653698       
    654699        fibril_mutex_unlock(&services_list_mutex);
     
    14051450                case LOC_SERVICE_GET_NAME:
    14061451                        loc_service_get_name(callid, &call);
     1452                        break;
     1453                case LOC_SERVICE_GET_SERVER_NAME:
     1454                        loc_service_get_server_name(callid, &call);
    14071455                        break;
    14081456                case LOC_NAMESPACE_GET_ID:
     
    14901538       
    14911539        /* Register location service at naming service */
    1492         if (service_register(SERVICE_LOC) != EOK)
    1493                 return -1;
     1540        int rc = service_register(SERVICE_LOC);
     1541        if (rc != EOK)
     1542                return rc;
    14941543       
    14951544        printf("%s: Accepting connections\n", NAME);
Note: See TracChangeset for help on using the changeset viewer.